diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 14:48:12 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 14:48:12 -0800 |
commit | 667298f5be78a8fb4bc126d20551b7c639b742b1 (patch) | |
tree | b7541400a6c04883cc5c338dd3bab58d48e13d1c | |
parent | 61de2f8971271c9412174d67932d64d228e42eaf (diff) |
disable closure in asm2f.test_exceptions due to closure issue with 458ac87
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 67e316e4..1803c926 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -2631,7 +2631,7 @@ back Settings.EXCEPTION_DEBUG = 1 Settings.DISABLE_EXCEPTION_CATCHING = 0 - if '-O2' in self.emcc_args: + if '-O2' in self.emcc_args and self.run_name != 'asm2f': # XXX closure problem with asm2f self.emcc_args += ['--closure', '1'] # Use closure here for some additional coverage src = ''' |