diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-15 12:28:49 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-15 22:53:39 +0000 |
commit | 7885041375ae3b878dbd7bafaf80ad21e38ab2bc (patch) | |
tree | c4ecf991da8b6113a381e1ab988b69436f56cb73 /tools | |
parent | 7400b9363975706ed5407c980f9becbe460634b7 (diff) | |
download | klee-7885041375ae3b878dbd7bafaf80ad21e38ab2bc.tar.gz |
Renamed --seed-out to --seed-file and --seed-out-dir to --seed-dir, and placed them in the seeding category. Moved options and option categories in Executor.cpp to the klee namespace.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index f55a9614..24b96867 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -21,6 +21,7 @@ #include "klee/Internal/Support/PrintVersion.h" #include "klee/Internal/System/Time.h" #include "klee/Interpreter.h" +#include "klee/OptionCategories.h" #include "klee/Statistics.h" #include "llvm/IR/Constants.h" @@ -255,10 +256,14 @@ namespace { cl::list<std::string> - SeedOutFile("seed-out"); + SeedOutFile("seed-file", + cl::desc(".ktest file to be used as seed"), + cl::cat(SeedingCat)); cl::list<std::string> - SeedOutDir("seed-out-dir"); + SeedOutDir("seed-dir", + cl::desc("Directory with .ktest files to be used as seeds"), + cl::cat(SeedingCat)); cl::opt<unsigned> MakeConcreteSymbolic("make-concrete-symbolic", |