diff options
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py index c01f1ceb..24f620f7 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1016,16 +1016,12 @@ if 'benchmark' not in sys.argv: ### 'Big' tests def test_fannkuch(self): - global SAFE_HEAP; SAFE_HEAP = 0 # Too slow for that - results = [ (1,0), (2,1), (3,2), (4,4), (5,7), (6,10), (7, 16), (8,22) ] for i, j in results: src = open(path_from_root(['tests', 'fannkuch.cpp']), 'r').read() self.do_test(src, 'Pfannkuchen(%d) = %d.' % (i,j), [str(i)], no_build=i>1) def test_raytrace(self): - global SAFE_HEAP; SAFE_HEAP = 0 # Too slow for that - src = open(path_from_root(['tests', 'raytrace.cpp']), 'r').read() output = open(path_from_root(['tests', 'raytrace.ppm']), 'r').read() self.do_test(src, output, ['3', '16']) |