diff options
-rw-r--r-- | tests/test_core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index d4960684..07a7bf77 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4424,6 +4424,7 @@ PORT: 3979 def test_atomic_cxx(self): if self.emcc_args is None: return self.skip('needs emcc') + if os.environ.get('EMCC_FAST_COMPILER') == '0': return self.skip('needs fastcomp') test_path = path_from_root('tests', 'core', 'test_atomic_cxx') src, output = (test_path + s for s in ('.cpp', '.txt')) Building.COMPILER_TEST_OPTS += ['-std=c++11'] |