aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 60b97b63..85a27a32 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -3069,7 +3069,7 @@ else:
#include<stdlib.h>
int main() {
int N = 1024*1024;
- int M = 600;
+ int M = 190;
int final = 0;
char *buf = (char*)malloc(N);
for (int t = 0; t < M; t++) {
@@ -3083,7 +3083,7 @@ else:
return 1;
}
'''
- self.do_benchmark(src, [], 'final: 800.')
+ self.do_benchmark(src, [], 'final: 720.')
def test_fannkuch(self):
src = open(path_from_root('tests', 'fannkuch.cpp'), 'r').read()