diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2016-04-08 09:50:44 +0100 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2016-04-08 13:09:45 +0100 |
commit | 5fbbd8a6ea51c81419b29ccfd133b4a9789fd638 (patch) | |
tree | 44fc2a65d5ab8fcc706f8eeecf5f86837a839ec3 /include | |
parent | 93dd487b972743a3081b311a07a66bc499a9b723 (diff) | |
download | klee-5fbbd8a6ea51c81419b29ccfd133b4a9789fd638.tar.gz |
Rename KLEE command line options from
* ``-replay-out`` to ``-replay-ktest-file`` * ``-replay-out-dir`` to ``-replay-ktest-dir`` and also rename * help descriptions * global variables corresponding to these options. * Names used in ``KleeHandler``, ``Interpreter``, ``Executor`` and in KLEE's ``main()`` function. The old name for the options/code was very unhelpful as it wasn't obvious that "out" files are ``.ktest`` files unless you examine KLEE's source code.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/Interpreter.h b/include/klee/Interpreter.h index abd454b1..b40ad0d5 100644 --- a/include/klee/Interpreter.h +++ b/include/klee/Interpreter.h @@ -113,7 +113,7 @@ public: // supply a test case to replay from. this can be used to drive the // interpretation down a user specified path. use null to reset. - virtual void setReplayOut(const struct KTest *out) = 0; + virtual void setReplayKTest(const struct KTest *out) = 0; // supply a list of branch decisions specifying which direction to // take on forks. this can be used to drive the interpretation down |