aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-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>