about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-03-15 12:45:13 +0000
committerMartinNowack <martin.nowack@gmail.com>2019-03-15 22:53:39 +0000
commit380622261e76f89b482d227a2c54413e0bb7f1f3 (patch)
treeada060c53c73803a9855f0b957d59d703f3bd4c9 /include
parent7885041375ae3b878dbd7bafaf80ad21e38ab2bc (diff)
downloadklee-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.h2
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