aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-04-10 14:28:16 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-04-10 14:28:29 -0700
commit0850228acbc2005f564552ac0bf5707f3f5b027f (patch)
tree62d3a1ec59966582040876605ba147ec2a908cd6 /tests
parentaa8cd959953dafaa5b7b569ea1acc1d028c6e70f (diff)
disable test_atomic_cxx in non-fastcomp
Diffstat (limited to 'tests')
-rw-r--r--tests/test_core.py1
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']