From ef458789a10fa9c6dd4d885aa25628846e3dff77 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Fri, 9 Apr 2021 03:38:21 +0200 Subject: [PATCH] this value was actually wrong, and caught by the new buffer overflow check. this is due to the fact that actual mpich test uses 10 times higher values, so just removing last digit was breaking the BIGDFT=4*NUM_X-1 condition --- teshsuite/smpi/mpich3-test/io/bigtype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teshsuite/smpi/mpich3-test/io/bigtype.c b/teshsuite/smpi/mpich3-test/io/bigtype.c index 57e6d661a8..2ba431c1f5 100644 --- a/teshsuite/smpi/mpich3-test/io/bigtype.c +++ b/teshsuite/smpi/mpich3-test/io/bigtype.c @@ -16,7 +16,7 @@ #define NUM_Y 1 //#define BIGDT 2147483643 -#define BIGDT 214748364 +#define BIGDT 214748363 int main(int argc, char **argv) { -- 2.20.1