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 | |
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.
-rw-r--r-- | lib/Solver/Solver.cpp | 5 | ||||
-rw-r--r-- | test/Feature/ExprLogging.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/Solver/Solver.cpp b/lib/Solver/Solver.cpp index 4df691f2..22b1545f 100644 --- a/lib/Solver/Solver.cpp +++ b/lib/Solver/Solver.cpp @@ -935,7 +935,10 @@ MetaSMTSolverImpl<SolverContext>::~MetaSMTSolverImpl() { template<typename SolverContext> char *MetaSMTSolverImpl<SolverContext>::getConstraintLog(const Query&) { - // ToDo + const char* msg = "Not supported"; + char *buf = new char[strlen(msg) + 1]; + strcpy(buf, msg); + return(buf); } template<typename SolverContext> 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 |