diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-03 02:55:55 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-03 02:55:55 +0000 |
commit | bcfc431c7133fb93f93c1768fd900f049e365323 (patch) | |
tree | 342f062b62eb009ce806bc2de1678e63516ff915 /lib/Core | |
parent | 4aea9d3d47e7e47630704fdf6628221fa45f6151 (diff) | |
download | klee-bcfc431c7133fb93f93c1768fd900f049e365323.tar.gz |
Update a few things that got forgotten in the great "bout" to "ktest"
renaming of '08. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core')
-rw-r--r-- | lib/Core/Executor.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index c3d2fcb4..f7c22fe0 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -2385,7 +2385,8 @@ std::string Executor::getAddressInfo(ExecutionState &state, void Executor::terminateState(ExecutionState &state) { if (replayOut && replayPosition!=replayOut->numObjects) { - klee_warning_once(replayOut, "replay did not consume all objects in .bout input."); + klee_warning_once(replayOut, + "replay did not consume all objects in test input."); } interpreterHandler->incPathsExplored(); @@ -2947,7 +2948,7 @@ void Executor::executeMakeSymbolic(ExecutionState &state, msg << "replace size mismatch: " << mo->name << "[" << mo->size << "]" << " vs " << obj->name << "[" << obj->numBytes << "]" - << " in bout\n"; + << " in test\n"; terminateStateOnError(state, msg.str(), |