diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-24 12:11:44 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-24 12:14:55 -0700 |
commit | 067a60d649a5f8a1af76d4a15dee31c81fe0f384 (patch) | |
tree | 8d7676614bb7ff531de45aa8b892ce2a6e4c8761 /tests/test_core.py | |
parent | 50ee300ffabb6c5e5c6a2d4b4762343822ea1dc2 (diff) |
handle empty inline asms; fixes #1729
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 69fb31f3..dd5b1e39 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -9044,6 +9044,9 @@ def process(filename): if '_noasm' in shortname and Settings.ASM_JS: print self.skip('case "%s" not relevant for asm.js' % shortname) continue + if '_le32' in shortname and not self.is_le32(): + print self.skip('case "%s" not relevant for non-le32 target' % shortname) + continue self.emcc_args = emcc_args if os.path.exists(shortname + '.emcc'): if not self.emcc_args: continue |