diff options
author | Hristina Palikareva <h.palikareva@imperial.ac.uk> | 2013-10-10 12:23:20 +0100 |
---|---|---|
committer | Hristina Palikareva <h.palikareva@imperial.ac.uk> | 2013-10-11 20:02:33 +0100 |
commit | f53b2ebc74acd9d31b54f21434e1b21eed7f5787 (patch) | |
tree | e634015a9287be2cb832e5bf6d37b3a0d8ab2600 /test | |
parent | d508fcc715277ea0a22c007ecde6ebc991d81841 (diff) | |
download | klee-f53b2ebc74acd9d31b54f21434e1b21eed7f5787.tar.gz |
getConstraintLog() of MetaSMTSolver explicitly states that this feature is not supported; a test case modified to not fail because of this.
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/ExprLogging.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Feature/ExprLogging.c b/test/Feature/ExprLogging.c index ad671a5e..73623af0 100644 --- a/test/Feature/ExprLogging.c +++ b/test/Feature/ExprLogging.c @@ -1,5 +1,6 @@ // RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t1.bc -// RUN: %klee --use-query-log=all:pc,all:smt2,solver:pc,solver:smt2 --write-pcs --write-cvcs --write-smt2s %t1.bc 2> %t2.log +// RUN: %klee --use-query-log=all:pc,all:smt2,solver:pc,solver:smt2 --use-metasmt=none --write-pcs --write-cvcs --write-smt2s %t1.bc 2> %t2.log +// RUN: %klee --use-query-log=all:pc,all:smt2,solver:pc,solver:smt2 --write-pcs --write-smt2s %t1.bc 2> %t2.log // RUN: %kleaver -print-ast klee-last/all-queries.pc > %t3.log // RUN: %kleaver -print-ast %t3.log > %t4.log // RUN: diff %t3.log %t4.log |