Fix seeds usage

This commit is contained in:
agroce
2019-04-25 11:41:47 -07:00
parent 9d2d5d7e8b
commit 9c8a0106b3

View File

@@ -68,6 +68,8 @@ def main():
if args.which_test is not None:
deepargs += " --input_which_test " + args.which_test
cmd += ["--initarg", deepargs, "--maxfilelen", str(args.max_input_size)]
if args.seeds is not None:
cmd += ["-i", args.seeds]
cmd += args.args
try:
r = subprocess.call(cmd)