diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-14 20:58:35 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-14 20:58:35 -0800 |
commit | 85c37ae71dddfa3ad2da4e4989156490c5143a8a (patch) | |
tree | 860f57290600b99d8485b445e7e977256e1ebc63 | |
parent | fce6d531d55007153a1651007620338ebb49b770 (diff) |
disable test for fastcomp
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index fe6cac6b..56899e49 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1878,6 +1878,8 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co self.do_run_from_file(src, output, [], lambda x, err: x.replace('\n', '*')) def test_llvm_used(self): + if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('pnacl kills llvm_used') + Building.LLVM_OPTS = 3 test_path = path_from_root('tests', 'core', 'test_llvm_used') |