aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-10 10:05:21 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-03-10 10:05:21 -0700
commit97b2c07543c3cac24c2ab21907976342a9ea1abe (patch)
tree5c2361d4bdbb2675dd6e13f24080bbdc0efd8e7c
parent1c25bb627bb43d2595dc59545d65d5a2ec83a9bf (diff)
disable test_sscanf and test_strtod in s_x_x
-rwxr-xr-xtests/runner.py4
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>