aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/csmith_driver.py
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2014-02-16 16:30:04 +0200
committerJukka Jylänki <jujjyl@gmail.com>2014-02-19 18:36:55 +0200
commitf13a1ea175b06dcbb110761d2f2dd00e27155279 (patch)
tree0af05a8ed8f3411e0ea98186e28ee51750c239a9 /tests/fuzz/csmith_driver.py
parent68935bec83ac0c0d4b2403f37f228ddba7009dfb (diff)
Fix Windows EMCC invocations to call 'python emcc' in a few places instead of just 'emcc'.
Diffstat (limited to 'tests/fuzz/csmith_driver.py')
-rwxr-xr-xtests/fuzz/csmith_driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/csmith_driver.py b/tests/fuzz/csmith_driver.py
index 23b46188..5c83e92f 100755
--- a/tests/fuzz/csmith_driver.py
+++ b/tests/fuzz/csmith_driver.py
@@ -89,7 +89,7 @@ while 1:
def try_js(args):
shared.try_delete(filename + '.js')
print '(compile)'
- shared.check_execute([shared.EMCC, opts, fullname, '-o', filename + '.js'] + CSMITH_CFLAGS + args)
+ shared.check_execute([shared.PYTHON, shared.EMCC, opts, fullname, '-o', filename + '.js'] + CSMITH_CFLAGS + args)
assert os.path.exists(filename + '.js')
print '(run)'
js = shared.run_js(filename + '.js', stderr=PIPE, engine=engine1, check_timeout=True)