optimin: fix default timeout

So that it matches the help text
This commit is contained in:
Adrian Herrera
2021-07-24 23:37:28 +00:00
parent 1afa0d7861
commit 33f9f911c1
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ static cl::opt<std::string> MemLimit(
cl::value_desc("megs"), cl::init("none"));
static cl::opt<std::string> Timeout(
"t", cl::desc("Run time limit for child process (default=5000)"),
cl::value_desc("msec"), cl::init("4000"));
cl::value_desc("msec"), cl::init("5000"));
static cl::opt<bool> CrashMode(
"C", cl::desc("Keep crashing inputs, reject everything else"));