diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-15 12:45:13 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-15 22:53:39 +0000 |
commit | 380622261e76f89b482d227a2c54413e0bb7f1f3 (patch) | |
tree | ada060c53c73803a9855f0b957d59d703f3bd4c9 /include | |
parent | 7885041375ae3b878dbd7bafaf80ad21e38ab2bc (diff) | |
download | klee-380622261e76f89b482d227a2c54413e0bb7f1f3.tar.gz |
Placed --exit-on-error, --max-tests and --watchdog in the termination category
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/OptionCategories.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/klee/OptionCategories.h b/include/klee/OptionCategories.h index bcf224bd..26cfc694 100644 --- a/include/klee/OptionCategories.h +++ b/include/klee/OptionCategories.h @@ -17,10 +17,12 @@ #include "llvm/Support/CommandLine.h" namespace klee { + extern llvm::cl::OptionCategory DebugCat; extern llvm::cl::OptionCategory MergeCat; extern llvm::cl::OptionCategory ModuleCat; extern llvm::cl::OptionCategory SeedingCat; extern llvm::cl::OptionCategory SolvingCat; + extern llvm::cl::OptionCategory TerminationCat; } #endif |