From: Augustin Degomme Date: Thu, 7 Nov 2013 12:35:16 +0000 (+0100) Subject: this test used too much memory for build slaves, divide by 4 the buffer size X-Git-Tag: v3_10_rc2~14 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/86c3f390838a2e600aafdc9a2219e0ddf6e55c9e this test used too much memory for build slaves, divide by 4 the buffer size (cherry picked from commit b60816bd929521783f045ec907fd540efda16e9f) --- diff --git a/teshsuite/smpi/mpich3-test/coll/allgatherv4.c b/teshsuite/smpi/mpich3-test/coll/allgatherv4.c index 2ce422a871..29e4d473a4 100644 --- a/teshsuite/smpi/mpich3-test/coll/allgatherv4.c +++ b/teshsuite/smpi/mpich3-test/coll/allgatherv4.c @@ -22,7 +22,7 @@ #define LARGE_BUF (256 * 1024) /* FIXME: MAX_BUF is too large */ -#define MAX_BUF (128 * 1024 * 1024) +#define MAX_BUF (32 * 1024 * 1024) #define LOOPS 10 __thread char * sbuf, * rbuf;