diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-14 10:23:33 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-14 10:23:33 -0800 |
commit | f39f71ff14c7bf0364d078e21315ff0bac5b2f1d (patch) | |
tree | 14c728e790ab5c7f1c2b7da35a3bf799823e9623 /tests/test_core.py | |
parent | fe899d8249caf8614100de0e1eb2f5efae77dfa7 (diff) |
add testcase for i1 constants being properly unsigned
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 |