about summary refs log tree commit diff homepage
path: root/tools
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2022-03-17 11:01:12 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2022-05-05 09:07:53 -0700
commit5536893ba57604dac1cc2a527e3137336bb96ae6 (patch)
tree1a3dc937035283c5245ff528c6716c0a19d847fe /tools
parentb4d84e54d2a72a3d3d7218b4c9ab25c9be17a8a8 (diff)
downloadklee-5536893ba57604dac1cc2a527e3137336bb96ae6.tar.gz
cl flags: document default values, remove dead option: --replay-keep-symbolic
Diffstat (limited to 'tools')
-rw-r--r--tools/klee/main.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp
index c66b707d..dd839de6 100644
--- a/tools/klee/main.cpp
+++ b/tools/klee/main.cpp
@@ -225,12 +225,6 @@ namespace {
   cl::OptionCategory ReplayCat("Replaying options",
                                "These options impact replaying of test cases.");
   
-  cl::opt<bool>
-  ReplayKeepSymbolic("replay-keep-symbolic",
-                     cl::desc("Replay the test cases only by asserting "
-                              "the bytes, not necessarily making them concrete."),
-                     cl::cat(ReplayCat));
-
   cl::list<std::string>
   ReplayKTestFile("replay-ktest-file",
                   cl::desc("Specify a ktest file to use for replay"),
@@ -277,8 +271,8 @@ namespace {
 
   cl::opt<bool>
   Watchdog("watchdog",
-           cl::desc("Use a watchdog process to enforce --max-time."),
-           cl::init(0),
+           cl::desc("Use a watchdog process to enforce --max-time (default=false)"),
+           cl::init(false),
            cl::cat(TerminationCat));
 
   cl::opt<bool>