diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-15 13:48:02 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-15 22:53:39 +0000 |
commit | 4756c66f48bc67f4f845ba1be6010e89dc34974e (patch) | |
tree | 44376454155db212868aa7f77891ebc09bbb307c /lib/Core/ExecutorTimers.cpp | |
parent | c1e7c3a2c53ac80eb07c1359b40151a440b41849 (diff) | |
download | klee-4756c66f48bc67f4f845ba1be6010e89dc34974e.tar.gz |
Placed --max-time in the termination category
Diffstat (limited to 'lib/Core/ExecutorTimers.cpp')
-rw-r--r-- | lib/Core/ExecutorTimers.cpp | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/lib/Core/ExecutorTimers.cpp b/lib/Core/ExecutorTimers.cpp index 9d2e8868..22429221 100644 --- a/lib/Core/ExecutorTimers.cpp +++ b/lib/Core/ExecutorTimers.cpp @@ -9,33 +9,38 @@ #include "CoreStats.h" #include "Executor.h" +#include "ExecutorTimerInfo.h" #include "PTree.h" #include "StatsTracker.h" -#include "ExecutorTimerInfo.h" #include "klee/ExecutionState.h" #include "klee/Internal/Module/InstructionInfoTable.h" #include "klee/Internal/Module/KInstruction.h" #include "klee/Internal/Module/KModule.h" -#include "klee/Internal/System/Time.h" #include "klee/Internal/Support/ErrorHandling.h" +#include "klee/Internal/System/Time.h" +#include "klee/OptionCategories.h" #include "llvm/IR/Function.h" #include "llvm/Support/CommandLine.h" -#include <string> -#include <unistd.h> +#include <math.h> #include <signal.h> +#include <string> #include <sys/time.h> -#include <math.h> - +#include <unistd.h> using namespace llvm; using namespace klee; +namespace klee { cl::opt<std::string> -MaxTime("max-time", - cl::desc("Halt execution after the specified number of seconds (default=0s (off))")); + MaxTime("max-time", + cl::desc("Halt execution after the specified number of seconds. " + "Set to 0s to disable (default=0s)"), + cl::init("0s"), + cl::cat(TerminationCat)); +} /// |