From f6cbce233ef89c30bbc8334c800e8a205677ec8b Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 26 Aug 2017 10:04:43 +0200 Subject: Reduce the running times of the tests in test/c Running times were too long when executed on low-end ARM or PowerPC hardware, or under QEMU emulation. --- test/c/mandelbrot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/c/mandelbrot.c') diff --git a/test/c/mandelbrot.c b/test/c/mandelbrot.c index 93aa8acb..032e7d75 100644 --- a/test/c/mandelbrot.c +++ b/test/c/mandelbrot.c @@ -22,7 +22,7 @@ int main (int argc, char **argv) double Zr, Zi, Cr, Ci, Tr, Ti; if (argc < 2) { - w = h = 3000; + w = h = 1000; } else { w = h = atoi(argv[1]); } -- cgit