[utils/FuzzTest] The help message says that if you don't specify --max-tests

"the script will run forever continually picking new tests to run", make it so.

llvm-svn: 152327
This commit is contained in:
Argyrios Kyrtzidis 2012-03-08 20:11:06 +00:00
parent 11dd38dab0
commit 941d092933
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ and you can run a particular test with '--test <index>'.
group.add_option("", "--test", help="Run a particular test",
type=int, dest="test", default=None, metavar="INDEX")
group.add_option("", "--max-tests", help="Maximum number of tests",
type=int, dest="max_tests", default=10, metavar="COUNT")
type=int, dest="max_tests", default=None, metavar="COUNT")
group.add_option("", "--pick-input",
help="Randomly select an input byte as well as fuzzing",
action='store_true', dest="pick_input", default=False)