diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-03 19:59:05 +0200 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-03 19:59:05 +0200 |
commit | a9f082c2d60417730d11d2c0dc9da7e6e5ed2e00 (patch) | |
tree | baf6d9b2d17814be17d45f90d09b74f47ebb9248 /tests/runner.py | |
parent | 95420a111d0ba2154ce9953b2506f7e402b97d7b (diff) |
fix test_time
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index c2f6b58e..95538ad3 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1686,7 +1686,7 @@ if 'benchmark' not in str(sys.argv): if USE_TYPED_ARRAYS == 2: return self.skip('Typed arrays = 2 truncate i64s') src = open(path_from_root('tests', 'time', 'src.c'), 'r').read() expected = open(path_from_root('tests', 'time', 'output.txt'), 'r').read() - self.do_test(src, expected) + self.do_test(src, expected, extra_emscripten_args=['-H', 'libc/time.h']) def test_statics(self): # static initializers save i16 but load i8 for some reason |