From b60816bd929521783f045ec907fd540efda16e9f Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Thu, 7 Nov 2013 13:35:16 +0100 Subject: [PATCH] this test used too much memory for build slaves, divide by 4 the buffer size --- teshsuite/smpi/mpich3-test/coll/allgatherv4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1