diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-10 10:05:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-10 10:05:21 -0700 |
commit | 97b2c07543c3cac24c2ab21907976342a9ea1abe (patch) | |
tree | 5c2361d4bdbb2675dd6e13f24080bbdc0efd8e7c | |
parent | 1c25bb627bb43d2595dc59545d65d5a2ec83a9bf (diff) |
disable test_sscanf and test_strtod in s_x_x
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index cbbbf345..ce37778a 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5029,6 +5029,8 @@ def process(filename): self.do_run(src, re.sub(r'(^|\n)\s+', r'\1', expected)) def test_strtod(self): + if self.emcc_args is None: return self.skip('needs emcc for libc') + src = r''' #include <stdio.h> #include <stdlib.h> @@ -5372,6 +5374,8 @@ at function.:blag ''') def test_sscanf(self): + if self.emcc_args is None: return self.skip('needs emcc for libc') + src = r''' #include <stdio.h> #include <string.h> |