diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-11-02 14:48:14 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-11-02 16:39:47 +0000 |
commit | 534d28787c486470aa141468ceceb0fe9baf2991 (patch) | |
tree | a42b1b1d36f5d917e2e4d70e7e78032a8873878a /test | |
parent | 8c9c1681155812a27b46ba131c44a5737afe67c3 (diff) | |
download | klee-534d28787c486470aa141468ceceb0fe9baf2991.tar.gz |
The test DeterministicSwitch.c does not need to allow external symbolic calls
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/DeterministicSwitch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/DeterministicSwitch.c b/test/Feature/DeterministicSwitch.c index fc83063b..462c4326 100644 --- a/test/Feature/DeterministicSwitch.c +++ b/test/Feature/DeterministicSwitch.c @@ -1,9 +1,9 @@ // RUN: %llvmgcc %s -emit-llvm -g -c -o %t.bc // RUN: rm -rf %t.klee-out -// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --allow-external-sym-calls --switch-type=internal --search=dfs %t.bc >%t.switch.log 2>&1 +// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --switch-type=internal --search=dfs %t.bc >%t.switch.log 2>&1 // RUN: FileCheck %s -input-file=%t.switch.log -check-prefix=CHECK-DFS // RUN: rm -rf %t.klee-out -// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --allow-external-sym-calls --switch-type=internal --search=bfs %t.bc >%t.switch.log 2>&1 +// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --switch-type=internal --search=bfs %t.bc >%t.switch.log 2>&1 // RUN: FileCheck %s -input-file=%t.switch.log -check-prefix=CHECK-BFS #include "klee/klee.h" |