diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-04 11:20:54 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:22 -0800 |
commit | ae8c3535937f994074d85276f9d0ac763e8e9489 (patch) | |
tree | 4fe7ae07fa90a8cc301e72b298ca6c228c388072 /tests/runner.py | |
parent | a06c97a605adec594490ed182a5fa62babef9205 (diff) |
properly disable test_runtimelink for asm
Diffstat (limited to 'tests/runner.py')
-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() |