diff options
author | MartinNowack <martin.nowack@gmail.com> | 2018-12-19 15:41:39 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-12-19 21:26:48 +0000 |
commit | be1c91ace77d519c37348c290a2c03db159d01bf (patch) | |
tree | c727b41f8778f716e9c00285b20dca1bb25c0344 /tools | |
parent | 1bb0e74a9d1702fcac47d08d9cb1278e80586257 (diff) | |
download | klee-be1c91ace77d519c37348c290a2c03db159d01bf.tar.gz |
Added default values to option comments
Co-Authored-By: ccadar <c.cadar@imperial.ac.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 16cabb0a..ae71518d 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -131,7 +131,7 @@ namespace { cl::opt<std::string> RunInDir("run-in-dir", - cl::desc("Change to the given directory before starting execution"), + cl::desc("Change to the given directory before starting execution (default=location of tested file)."), cl::cat(StartCat)); cl::opt<std::string> @@ -147,7 +147,7 @@ namespace { cl::opt<bool> OptimizeModule("optimize", - cl::desc("Optimize the code before execution"), + cl::desc("Optimize the code before execution (default=false)."), cl::init(false), cl::cat(StartCat)); @@ -183,7 +183,7 @@ namespace { cl::opt<bool> WithPOSIXRuntime("posix-runtime", - cl::desc("Link with POSIX runtime. Options that can be passed as arguments to the programs are: --sym-arg <max-len> --sym-args <min-argvs> <max-argvs> <max-len> + file model options"), + cl::desc("Link with POSIX runtime. Options that can be passed as arguments to the programs are: --sym-arg <max-len> --sym-args <min-argvs> <max-argvs> <max-len> + file model options (default=false)."), cl::init(false), cl::cat(LinkCat)); @@ -209,15 +209,15 @@ namespace { cl::opt<bool> NoOutput("no-output", - cl::desc("Don't generate test files")); + cl::desc("Don't generate test files (default=false).")); cl::opt<bool> WarnAllExternals("warn-all-externals", - cl::desc("Give initial warning for all externals.")); + cl::desc("Give initial warning for all externals (default=false).")); cl::opt<bool> OptExitOnError("exit-on-error", - cl::desc("Exit if errors occur")); + cl::desc("Exit KLEE if an error in the tested application has been found (default=false).")); /*** Replaying options ***/ |