diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-30 18:50:40 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:21 -0800 |
commit | 2465654957f733ebfa292bb60e2cf651350c39d9 (patch) | |
tree | a60de0e6e62eb6166296aa21f5221a86d5ede1bf /tests/runner.py | |
parent | eb66a7f2184e820830f04df95b77493458f0ab24 (diff) |
disable some more asm tests
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index a474e4e0..c84a953d 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -487,6 +487,8 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv) and 'brows self.do_run(src, 'hello, world!') def test_intvars(self): + if Settings.ASM_JS: return self.skip('asm does not support i64 yet') + src = ''' #include <stdio.h> int global = 20; @@ -2919,6 +2921,7 @@ def process(filename): def test_memorygrowth(self): if Settings.USE_TYPED_ARRAYS == 0: return self.skip('memory growth is only supported with typed arrays') + if Settings.ASM_JS: return self.skip('asm does not support memory growth yet') # With typed arrays in particular, it is dangerous to use more memory than TOTAL_MEMORY, # since we then need to enlarge the heap(s). |