about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2023-06-23 22:41:50 +0100
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2023-06-26 07:45:20 +0100
commit79f75a4dafe36c95b4fdf81c0bc4032fb111e52c (patch)
treec033f7b0cc7d18f33671903557ab4e515265f3d2
parentc10e9e926700773e01f44fbb1917deac7be2aaea (diff)
downloadklee-79f75a4dafe36c95b4fdf81c0bc4032fb111e52c.tar.gz
Improved help message for --exit-on-error-type=Abort
-rw-r--r--lib/Core/Executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp
index 5194aff2..f01b7d99 100644
--- a/lib/Core/Executor.cpp
+++ b/lib/Core/Executor.cpp
@@ -281,7 +281,7 @@ cl::list<StateTerminationType> ExitOnErrorType(
     cl::desc("Stop execution after reaching a specified condition (default=false)"),
     cl::values(
         clEnumValN(StateTerminationType::Abort, "Abort",
-                   "The program crashed (reached abort()/klee_abort())"),
+                   "The program reached abort or klee_abort"),
         clEnumValN(StateTerminationType::Assert, "Assert",
                    "An assertion was hit"),
         clEnumValN(StateTerminationType::BadVectorAccess, "BadVectorAccess",