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_11_beta~356 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b60816bd929521783f045ec907fd540efda16e9f?ds=sidebyside this test used too much memory for build slaves, divide by 4 the buffer size --- 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;