diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-04 10:59:40 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-04 10:59:40 -0800 |
commit | fc1fd06023a044b3982d35aa8ed1e800993886d8 (patch) | |
tree | 1e8ac76fb415aa837189b7dd411552f2c751d154 /tests/runner.py | |
parent | 3af6cf79808224cdecf93336874a47844d03dc40 (diff) |
fix test_runtimelink_multi when no spidermonkey present
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index c5cd56e1..17d6ef0c 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7481,6 +7481,8 @@ f.close() self.assertContained('hello from lib', run_js(os.path.join(self.get_dir(), 'a.out.js'))) def test_runtimelink_multi(self): + if SPIDERMONKEY_ENGINE not in JS_ENGINES: return self.skip('cannot run without spidermonkey due to node limitations') + open('testa.h', 'w').write(r''' #ifndef _TESTA_H_ #define _TESTA_H_ |