diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-12-18 14:21:34 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-12-19 13:25:31 +0000 |
commit | c86e3bcf164c91ee215cc4e52de42ba64369d60b (patch) | |
tree | 147b6b517bf8ab6ab67074c77d9cc00b3880cfc9 /test/regression | |
parent | c44b6aa52812d712860677af18d586bea18d3c94 (diff) | |
download | klee-c86e3bcf164c91ee215cc4e52de42ba64369d60b.tar.gz |
Renamed --stop-after-n-instructions to --max-instructions, as suggested by @251
Diffstat (limited to 'test/regression')
-rw-r--r-- | test/regression/2018-05-05-number-instructions-dumped-states.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2018-05-05-number-instructions-dumped-states.c b/test/regression/2018-05-05-number-instructions-dumped-states.c index 8d183b77..0f84408e 100644 --- a/test/regression/2018-05-05-number-instructions-dumped-states.c +++ b/test/regression/2018-05-05-number-instructions-dumped-states.c @@ -1,6 +1,6 @@ // RUN: %llvmgcc %s -emit-llvm %O0opt -g -c -o %t1.bc // RUN: rm -rf %t.klee-out -// RUN: %klee -stop-after-n-instructions=1 --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s +// RUN: %klee -max-instructions=1 --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s // CHECK: KLEE: done: total instructions = 1 |