diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 93a2a51e..4c698de3 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -362,8 +362,6 @@ 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 { @@ -3756,6 +3754,7 @@ The current type of b is: 9 def test_runtimelink(self): if Building.LLVM_OPTS: return self.skip('LLVM opts will optimize printf into puts in the parent, and the child will still look for puts') if Settings.NAMED_GLOBALS == 0: return self.skip('dlopen cannot work without named globals, TODO') + if Settings.ASM_JS: return self.skip('asm does not support runtime linking') main, supp = self.setup_runtimelink_test() |