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 /test | |
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 'test')
-rw-r--r-- | test/Coverage/ReplayOutDir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Coverage/ReplayOutDir.c b/test/Coverage/ReplayOutDir.c index ca7e590a..d9bffea0 100644 --- a/test/Coverage/ReplayOutDir.c +++ b/test/Coverage/ReplayOutDir.c @@ -1,7 +1,7 @@ // RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc // RUN: rm -rf %t1.out %t1.replay // RUN: %klee --output-dir=%t1.out %t1.bc -// RUN: %klee --output-dir=%t1.replay --replay-out-dir=%t1.out %t1.bc +// RUN: %klee --output-dir=%t1.replay --replay-ktest-dir=%t1.out %t1.bc int main() { int i; |