update README, nicer output from reducer

This commit is contained in:
Alex Groce
2018-09-01 14:04:31 -07:00
parent 9923c591c1
commit 54d2c8180a
2 changed files with 56 additions and 1 deletions
+4 -1
View File
@@ -127,7 +127,10 @@ def main():
print "PADDING TEST WITH", (s[1] + 1) - len(currentTest), "ZEROS"
padding = bytearray('\x00' * ((s[1] + 1) - len(currentTest)))
currentTest = currentTest + padding
print
print "WRITING REDUCED TEST TO", out
with open(out, 'wb') as outf:
outf.write(currentTest)