From 04941b3cb8712cee9c3b0806cfe7aa76287c40e8 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sun, 24 Jul 2016 16:09:47 +0200 Subject: Updates to the local test suite - Adjust parameters to bring the running time of each test closer to 1 second - compression/arcode.c: array access one past - "inline" -> "static inline" - Remove cchecklink support --- test/c/fannkuch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/c/fannkuch.c') diff --git a/test/c/fannkuch.c b/test/c/fannkuch.c index 9cc7a693..7feaf6d7 100644 --- a/test/c/fannkuch.c +++ b/test/c/fannkuch.c @@ -98,7 +98,7 @@ fannkuch( int n ) int main( int argc, char* argv[] ) { - int n = (argc>1) ? atoi(argv[1]) : 10; + int n = (argc>1) ? atoi(argv[1]) : 11; printf("Pfannkuchen(%d) = %ld\n", n, fannkuch(n)); return 0; -- cgit