diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-20 19:40:47 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-20 19:40:47 -0800 |
commit | bd75da55be2cd6fc87c0fdc02812f8db1cacbe97 (patch) | |
tree | 0aa9d918ccac453b9f0ca137b3759bf1e5e21264 | |
parent | 5e651e7c99f088dd9d1d116ab463ee3493afcc69 (diff) |
do not force asm in fuzzer
-rwxr-xr-x | tests/fuzz/csmith_driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/csmith_driver.py b/tests/fuzz/csmith_driver.py index da0a3de3..e3523453 100755 --- a/tests/fuzz/csmith_driver.py +++ b/tests/fuzz/csmith_driver.py @@ -74,7 +74,7 @@ while 1: def try_js(args): shared.try_delete(filename + '.js') print '(compile)' - shared.check_execute([shared.EMCC, opts, '-s', 'ASM_JS=1', filename + '.c', '-o', filename + '.js'] + CSMITH_CFLAGS + args) + shared.check_execute([shared.EMCC, opts, filename + '.c', '-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) |