From 183ad0f5574406c9c0e151846af1e184b77e4ffc Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 29 Jul 2014 10:38:49 -0700 Subject: [PATCH] make test_bad_typeid fastcomp-only --- tests/test_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_core.py b/tests/test_core.py index 19bfb8680..ad55fd7b6 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1501,6 +1501,7 @@ int main(int argc, char **argv) def test_bad_typeid(self): if self.emcc_args is None: return self.skip('requires emcc') + if os.environ.get('EMCC_FAST_COMPILER') == '0': return self.skip('needs fastcomp') Settings.ERROR_ON_UNDEFINED_SYMBOLS = 1 Settings.DISABLE_EXCEPTION_CATCHING = 0