about summary refs log tree commit diff homepage
path: root/tools
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2014-02-24 17:27:16 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2014-02-24 17:27:16 +0000
commit78f393d28eb243aa00e003feeee928091d5f174f (patch)
tree17edb16d1e7fafcde130e00661b7ba5acf5ae465 /tools
parentb96fd2ce9e2148e076bb755b6a2fc39979a37f6b (diff)
downloadklee-78f393d28eb243aa00e003feeee928091d5f174f.tar.gz
Improved help message for make-concrete-symbolic and fixed some typos.
Diffstat (limited to 'tools')
-rw-r--r--tools/klee/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp
index f9698fdf..1fe28270 100644
--- a/tools/klee/main.cpp
+++ b/tools/klee/main.cpp
@@ -170,7 +170,7 @@ namespace {
     
   cl::opt<bool>
   ReplayKeepSymbolic("replay-keep-symbolic", 
-                     cl::desc("Replay the test cases only by asserting"
+                     cl::desc("Replay the test cases only by asserting "
                               "the bytes, not necessarily making them concrete."));
     
   cl::list<std::string>
@@ -196,7 +196,9 @@ namespace {
   
   cl::opt<unsigned>
   MakeConcreteSymbolic("make-concrete-symbolic",
-                       cl::desc("Rate at which to make concrete reads symbolic (0=off)"),
+                       cl::desc("Probabilistic rate at which to make concrete reads symbolic, "
+				"i.e. approximately 1 in n concrete reads will be made symbolic (0=off, 1=all).  "
+				"Used for testing."),
                        cl::init(0));
  
   cl::opt<unsigned>