aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-12-03 18:59:34 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-07 14:23:22 -0800
commit7596b0d93710382f816b4e07eb7e70e0b9a87c1c (patch)
tree28a42a8c31de6c609ec56d1b7debe65ddf7835fc /tests/runner.py
parent1189e117b75850aa49ff6fad975d8b785e2fc4ec (diff)
disable some tests in asm
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index d8830679..8b1bf483 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -362,6 +362,8 @@ process(sys.argv[1])
# Shared test code between main suite and others
def setup_runtimelink_test(self):
+ if Settings.ASM_JS: return self.skip('asm does not support runtime linking')
+
header = r'''
struct point
{
@@ -6484,6 +6486,8 @@ def process(filename):
self.do_run(src, '''AD:-1,1''', build_ll_hook=self.do_autodebug)
def test_profiling(self):
+ if Settings.ASM_JS: return self.skip('asm does not support profiling')
+
src = '''
#include <emscripten.h>
#include <unistd.h>