diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-19 13:50:13 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-19 13:52:58 -0800 |
commit | 7ead20ea09f187b9c46709d299154be166d44281 (patch) | |
tree | 5da4bac3469ec6f5379f38ea40dcd266358189a1 | |
parent | 2f9106e232a217331948db53b9e3b2f16533efea (diff) |
emit fuzz errors with the right suffix
-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 5c83e92f..ad5a7021 100755 --- a/tests/fuzz/csmith_driver.py +++ b/tests/fuzz/csmith_driver.py @@ -115,7 +115,7 @@ while 1: print "EMSCRIPTEN BUG" notes['embug'] += 1 fails += 1 - shutil.copyfile(fullname, 'newfail%d.c' % fails) + shutil.copyfile(fullname, 'newfail%d%s' % (fails, suffix)) continue #if not ok: # try: # finally, try with safe heap. if that is triggered, this is nonportable code almost certainly |