aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
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>