about summary refs log tree commit diff homepage
path: root/test/regression
diff options
context:
space:
mode:
authorFelix Rath <felix.rath@comsys.rwth-aachen.de>2017-12-07 14:07:57 +0100
committerAndrea Mattavelli <andreamattavelli@users.noreply.github.com>2017-12-11 11:39:45 +0000
commit89c642abd24e47e5c3885ed704bed9aa8502c632 (patch)
tree525a2a97c25287f8ee7ee0fdc2aaa8fa0858cbfa /test/regression
parent3d1b037503d5d1afd2707755e480d564088cb844 (diff)
downloadklee-89c642abd24e47e5c3885ed704bed9aa8502c632.tar.gz
fix regression test: use `%klee` instead of `klee`
Diffstat (limited to 'test/regression')
-rw-r--r--test/regression/2016-11-24-bitcast-weak-alias.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2016-11-24-bitcast-weak-alias.c b/test/regression/2016-11-24-bitcast-weak-alias.c
index d35f6fa7..b20e205e 100644
--- a/test/regression/2016-11-24-bitcast-weak-alias.c
+++ b/test/regression/2016-11-24-bitcast-weak-alias.c
@@ -1,7 +1,7 @@
 // REQUIRES: not-darwin
 // RUN: %llvmgcc %s -Wall -emit-llvm -g -O0 -c -o %t.bc
 // RUN: rm -rf %t.klee-out
-// RUN: klee --output-dir=%t.klee-out -exit-on-error -search=nurs:covnew %t.bc DUMMY_ARG >%t1.log 2>&1
+// RUN: %klee --output-dir=%t.klee-out -exit-on-error -search=nurs:covnew %t.bc DUMMY_ARG >%t1.log 2>&1
 // RUN: FileCheck -input-file=%t1.log %s
 
 // This test case is designed to cover code in `klee::getDirectCallTarget(CallSite)`.