[utils/FuzzTest] For --filelist the option type is string, not integer.

llvm-svn: 152324
This commit is contained in:
Argyrios Kyrtzidis 2012-03-08 18:56:59 +00:00
parent 41bcf33c63
commit 05d2212db3

View File

@ -223,7 +223,7 @@ and you can run a particular test with '--test <index>'.
type=str, action="append", dest="input_files", default=[])
group.add_option("", "--filelist", metavar="LIST",
help="Add a list of inputs files to fuzz (one per line)",
type=int, action="append", dest="filelists", default=[])
type=str, action="append", dest="filelists", default=[])
parser.add_option_group(group)
group = OptionGroup(parser, "Fuzz Options")