diff options
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 2b5ad48e..6a9ef979 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -5140,6 +5140,9 @@ def process(filename): if '_le32' in shortname and not self.is_le32(): print self.skip('case "%s" not relevant for non-le32 target' % shortname) continue + if '_fastcomp' in shortname and not os.environ.get('EMCC_FAST_COMPILER') == '1': + print self.skip('case "%s" not relevant for non-fastcomp' % shortname) + continue self.emcc_args = emcc_args if os.path.exists(shortname + '.emcc'): if not self.emcc_args: continue |