diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-05 10:40:14 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-05 10:40:14 -0800 |
commit | f69eed7731abf65fa76adb8878f9ff352ffb25c3 (patch) | |
tree | 52e023cdfdb6df2ca008d601e532d08146e07d03 /tests/test_core.py | |
parent | 7016f3ec866da493a82586ea9ea1a0895514b251 (diff) |
support ASM_JS=2 not just in test runner, and remove some unneeded uses in test suite
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 0cd619b0..b2147d49 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -3814,7 +3814,6 @@ def process(filename): self.do_run(open(path_from_root('tests', 'emscripten_get_now.cpp')).read(), 'Timer resolution is good.') def test_inlinejs(self): - if Settings.ASM_JS: Settings.ASM_JS = 2 # skip validation, asm does not support random code if not self.is_le32(): return self.skip('le32 needed for inline js') src = r''' #include <stdio.h> @@ -3842,7 +3841,6 @@ def process(filename): self.do_run(src, 'Inline JS is very cool\n3.64\n') # TODO 1\n2\n3\n1\n2\n3\n') def test_inlinejs2(self): - if Settings.ASM_JS: Settings.ASM_JS = 2 # skip validation, asm does not support random code if not self.is_le32(): return self.skip('le32 needed for inline js') src = r''' #include <stdio.h> |