From 059664368a5f4ed036e87c0a5e0ed1fae1706f3d Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Fri, 13 Sep 2019 15:18:55 +0200 Subject: Reducing further the input size of the tests --- test/c/nsieve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/c/nsieve.c') diff --git a/test/c/nsieve.c b/test/c/nsieve.c index 49fe385f..fc79ba69 100644 --- a/test/c/nsieve.c +++ b/test/c/nsieve.c @@ -29,7 +29,7 @@ static unsigned int nsieve(int m) { #define NITER 2 int main(int argc, char * argv[]) { - int m = argc < 2 ? 9 : atoi(argv[1]); + int m = argc < 2 ? 6 : atoi(argv[1]); int i, j; for (i = 0; i < 3; i++) { int n = 200 << (m-i); -- cgit