diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/DanglingConcreteReadExpr.c | 2 | ||||
-rw-r--r-- | test/Feature/MakeConcreteSymbolic.c | 4 | ||||
-rw-r--r-- | test/Makefile | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/test/Feature/DanglingConcreteReadExpr.c b/test/Feature/DanglingConcreteReadExpr.c index 8e15b07d..9d2d5ecc 100644 --- a/test/Feature/DanglingConcreteReadExpr.c +++ b/test/Feature/DanglingConcreteReadExpr.c @@ -1,6 +1,6 @@ // RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc // RUN: rm -rf %t.klee-out -// RUN: %klee --output-dir=%t.klee-out %t1.bc +// RUN: %klee --optimize=false --output-dir=%t.klee-out %t1.bc // RUN: grep "total queries = 2" %t.klee-out/info #include <assert.h> diff --git a/test/Feature/MakeConcreteSymbolic.c b/test/Feature/MakeConcreteSymbolic.c index dad618b3..26f95a93 100644 --- a/test/Feature/MakeConcreteSymbolic.c +++ b/test/Feature/MakeConcreteSymbolic.c @@ -1,10 +1,10 @@ // RUN: %llvmgcc %s -emit-llvm -g -c -o %t1.bc // RUN: rm -rf %t.klee-out -// RUN: %klee --output-dir=%t.klee-out --exit-on-error %t1.bc +// RUN: %klee --optimize=false --output-dir=%t.klee-out --exit-on-error %t1.bc // RUN: grep "done: total queries = 0" %t.klee-out/info // RUN: rm -rf %t.klee-out -// RUN: %klee --output-dir=%t.klee-out --make-concrete-symbolic=1 --exit-on-error %t1.bc +// RUN: %klee --optimize=false --output-dir=%t.klee-out --make-concrete-symbolic=1 --exit-on-error %t1.bc // RUN: grep "done: total queries = 2" %t.klee-out/info diff --git a/test/Makefile b/test/Makefile index 6372d512..6be82442 100644 --- a/test/Makefile +++ b/test/Makefile @@ -39,7 +39,7 @@ endif # Older LLVM versions don't detect python at configure time # so guess the location ifndef PYTHON - # llvm-lit doesn't work with python3 so force python2 + # llvm-lit doesn't work with python3 so force python2 PYTHON := python2 endif @@ -68,7 +68,6 @@ clean:: $(RM) -rf `find $(PROJ_OBJ_ROOT)/test -name 'klee-out*'` $(RM) -rf `find $(PROJ_OBJ_ROOT)/test -name '*~'` $(RM) -rf `find $(PROJ_OBJ_ROOT)/test -name test.log` - rm -f site.exp lit.site.cfg: lit.site.cfg.in @echo "Making KLEE 'lit.site.cfg' file..." |