diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-14 11:41:26 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-14 11:41:26 -0800 |
commit | 9e4723348984f1eac70809ee1831c30ba03686ab (patch) | |
tree | ac53d6528c8782231b59618534bd54daa393c1fa | |
parent | 1847ca00d63c8aedb951052e2f9749e105c06346 (diff) |
suppress native warnings in fuzzer, csmith emits many
-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 f949c7be..0afa6ada 100755 --- a/tests/fuzz/csmith_driver.py +++ b/tests/fuzz/csmith_driver.py @@ -60,7 +60,7 @@ while 1: print '2) Compile natively' shared.try_delete(filename) try: - shared.check_execute([COMP, opts, fullname, '-o', filename + '1'] + CSMITH_CFLAGS) # + shared.EMSDK_OPTS + shared.check_execute([COMP, opts, fullname, '-o', filename + '1'] + CSMITH_CFLAGS + ['-w']) # + shared.EMSDK_OPTS except Exception, e: print 'Failed to compile natively using clang' notes['invalid'] += 1 |