diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-20 20:17:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-20 20:17:52 -0800 |
commit | 52449799a409217217d2dd03d3340cf78fe776c9 (patch) | |
tree | 576ae84354045feb3b3d1189cfb86f0c87b40e30 /tests/fuzz/csmith_driver.py | |
parent | bd75da55be2cd6fc87c0fdc02812f8db1cacbe97 (diff) |
fuzz i64 math as well
Diffstat (limited to 'tests/fuzz/csmith_driver.py')
-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 e3523453..90c7df2e 100755 --- a/tests/fuzz/csmith_driver.py +++ b/tests/fuzz/csmith_driver.py @@ -40,7 +40,7 @@ while 1: print 'Tried %d, notes: %s' % (tried, notes) print '1) Generate C' - check_call([CSMITH, '--no-volatiles', '--no-math64', '--no-packed-struct'],# + + check_call([CSMITH, '--no-volatiles', '--no-packed-struct'],# '--no-math64' #['--max-block-depth', '2', '--max-block-size', '2', '--max-expr-complexity', '2', '--max-funcs', '2'], stdout=open(filename + '.c', 'w')) #shutil.copyfile(filename + '.c', 'testcase%d.c' % tried) |