diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-03 12:31:36 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-03 12:31:36 -0700 |
commit | 60cbbc933ce659258dd406e6da04fa0fef9b0f78 (patch) | |
tree | cfff6f050bfef4e79df52018e5c613f8bb8b51b8 | |
parent | c87c0b8c698f35b5c18dff4f6a962a3e4880310e (diff) |
disable strotoll tests in s_x_x
-rwxr-xr-x | tests/runner.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 055b716d..3d372199 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4533,6 +4533,8 @@ The current type of b is: 9 self.do_run(src, '*1*', force_c=True) def test_strtoll_hex(self): + if self.emcc_args is None: return self.skip('requires emcc') + # tests strtoll for hex strings (0x...) src = r''' #include <stdio.h> @@ -4559,6 +4561,8 @@ The current type of b is: 9 self.do_run(src, '111111') def test_strtoll_dec(self): + if self.emcc_args is None: return self.skip('requires emcc') + # tests strtoll for decimal strings (0x...) src = r''' #include <stdio.h> @@ -4585,6 +4589,8 @@ The current type of b is: 9 self.do_run(src, '111111') def test_strtoll_bin(self): + if self.emcc_args is None: return self.skip('requires emcc') + # tests strtoll for binary strings (0x...) src = r''' #include <stdio.h> @@ -4606,6 +4612,8 @@ The current type of b is: 9 self.do_run(src, '111') def test_strtoll_oct(self): + if self.emcc_args is None: return self.skip('requires emcc') + # tests strtoll for decimal strings (0x...) src = r''' #include <stdio.h> |