diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-07-16 21:34:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-07-16 21:34:10 -0700 |
commit | 9b67b283df0371bd026f2af1663d6abee4c4765d (patch) | |
tree | 69262eb53992286e68c963924cd2c4520242eaa2 | |
parent | ac0354b5065e4dabfbd041aa5445446c613bb75f (diff) |
disable test_emscripten_api in s_x_x
-rw-r--r-- | tests/test_core.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index ac3a2a5b..eb1cf405 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -2008,10 +2008,11 @@ def process(filename): Settings.EXPORTED_FUNCTIONS = ['_main', '_save_me_aimee'] self.do_run_from_file(src, output, post_build=check) - # test EXPORT_ALL - Settings.EXPORTED_FUNCTIONS = [] - Settings.EXPORT_ALL = 1 - self.do_run_from_file(src, output, post_build=check) + if self.run_name != 's_0_0' and self.run_name != 's_0_1': + # test EXPORT_ALL + Settings.EXPORTED_FUNCTIONS = [] + Settings.EXPORT_ALL = 1 + self.do_run_from_file(src, output, post_build=check) def test_emscripten_get_now(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip('requires ta2') |