diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-24 11:31:41 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-24 11:31:41 -0800 |
commit | 03e2e6c321d28e3df3b37a2c0bed3ba9d04e52b3 (patch) | |
tree | 085dd14f4d8976ee4dfa7cb8160107b64bb8c22a | |
parent | f7043b6e2cd0b0d4eb414ef9689e224537dc37b2 (diff) |
disable test_intvars in s_x_x
-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 2a94228f..4e79f7e9 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -495,6 +495,8 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv) and 'brows self.do_run(src, 'hello, world!') def test_intvars(self): + if self.emcc_args == None: return self.skip('needs ta2') + src = ''' #include <stdio.h> int global = 20; |