aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <azakai@mozilla.com>2011-02-05 21:01:26 -0800
committerAlon Zakai <azakai@mozilla.com>2011-02-05 21:01:26 -0800
commitd2ba2dcfc11846ec1f9a36c93055a7500a93f669 (patch)
tree196fc1f2fcd806f413be242389e29a9f6759654a /tests/runner.py
parent0805b2bec3ee27785259d76f1c9a5ccc555f1d6b (diff)
zlib test
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 1c2e6f1c..d3a16065 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -1563,8 +1563,9 @@ if 'benchmark' not in sys.argv:
includes=[path_from_root('tests', 'freetype', 'include')],
post_build=post)
- def zzztest_zlib(self):
+ def test_zlib(self):
if COMPILER != LLVM_GCC: return # TODO: Build in both clang and llvm-gcc. emmaken currently only does llvm-gcc
+ global CORRECT_OVERFLOWS; CORRECT_OVERFLOWS = 1 # Overflows in inflate_table() getelementptr (in phi)
self.do_test(open(path_from_root('tests', 'zlib', 'example.c'), 'r').read(),
open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(),