aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-29 18:30:00 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-07 14:23:20 -0800
commit8bfb3cca7094a72e014fd481bcb637e28a77e405 (patch)
tree314d246605c3cf223c43a30f39c49bd9947ca819 /tests/runner.py
parent2225aa5dfb1fb99af4e2129e2e8b77e9957e7bc6 (diff)
disable some test_cases undefined behavior cases for asm
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index a9a815af..228e29a7 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -6400,6 +6400,9 @@ def process(filename):
if '_ta2' in shortname and not Settings.USE_TYPED_ARRAYS == 2:
print self.skip('case "%s" only relevant for ta2' % shortname)
continue
+ if '_noasm' in shortname and Settings.ASM_JS:
+ print self.skip('case "%s" not relevant for asm.js' % shortname)
+ continue
print >> sys.stderr, "Testing case '%s'..." % shortname
output_file = path_from_root('tests', 'cases', shortname + '.txt')
if Settings.QUANTUM_SIZE == 1: