aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Solver/STPSolver.cpp
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2016-08-03 13:34:28 +0100
committerGitHub <noreply@github.com>2016-08-03 13:34:28 +0100
commit3966e9e03ac03cf0a2e5b19218f4cbd818e69df1 (patch)
tree81a4db86d147a644d057dcb6f49f5f8843c829af /lib/Solver/STPSolver.cpp
parent906cd594f28990113c5e7780564766befdcb93e1 (diff)
parent5464514153e57ec9c10734afed686071b6ddc463 (diff)
downloadklee-3966e9e03ac03cf0a2e5b19218f4cbd818e69df1.tar.gz
Merge pull request #439 from jirislaby/fprintf
fprintf: convert to klee_warning
Diffstat (limited to 'lib/Solver/STPSolver.cpp')
-rw-r--r--lib/Solver/STPSolver.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Solver/STPSolver.cpp b/lib/Solver/STPSolver.cpp
index f2500572..e1d41eba 100644
--- a/lib/Solver/STPSolver.cpp
+++ b/lib/Solver/STPSolver.cpp
@@ -231,7 +231,7 @@ runAndGetCexForked(::VC vc, STPBuilder *builder, ::VCExpr q,
fflush(stderr);
int pid = fork();
if (pid == -1) {
- fprintf(stderr, "ERROR: fork failed (for STP)");
+ klee_warning("fork failed (for STP)");
if (!IgnoreSolverFailures)
exit(1);
return SolverImpl::SOLVER_RUN_STATUS_FORK_FAILED;
@@ -266,7 +266,7 @@ runAndGetCexForked(::VC vc, STPBuilder *builder, ::VCExpr q,
} while (res < 0 && errno == EINTR);
if (res < 0) {
- fprintf(stderr, "ERROR: waitpid() for STP failed");
+ klee_warning("waitpid() for STP failed");
if (!IgnoreSolverFailures)
exit(1);
return SolverImpl::SOLVER_RUN_STATUS_WAITPID_FAILED;
@@ -276,8 +276,8 @@ runAndGetCexForked(::VC vc, STPBuilder *builder, ::VCExpr q,
// "occasion" return a status when the process was terminated by a
// signal, so test signal first.
if (WIFSIGNALED(status) || !WIFEXITED(status)) {
- fprintf(stderr, "ERROR: STP did not return successfully. Most likely "
- "you forgot to run 'ulimit -s unlimited'\n");
+ klee_warning("STP did not return successfully. Most likely you forgot "
+ "to run 'ulimit -s unlimited'");
if (!IgnoreSolverFailures) {
exit(1);
}
@@ -290,11 +290,11 @@ runAndGetCexForked(::VC vc, STPBuilder *builder, ::VCExpr q,
} else if (exitcode == 1) {
hasSolution = false;
} else if (exitcode == 52) {
- fprintf(stderr, "error: STP timed out");
+ klee_warning("STP timed out");
// mark that a timeout occurred
return SolverImpl::SOLVER_RUN_STATUS_TIMEOUT;
} else {
- fprintf(stderr, "error: STP did not return a recognized code");
+ klee_warning("STP did not return a recognized code");
if (!IgnoreSolverFailures)
exit(1);
return SolverImpl::SOLVER_RUN_STATUS_UNEXPECTED_EXIT_CODE;