From 5464514153e57ec9c10734afed686071b6ddc463 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Tue, 2 Aug 2016 11:38:57 +0200 Subject: fprintf: convert to klee_warning In some Solver sources, some error outputs were missing \n. Instead of adding a new line to all of them, convert the fprintf's to klee_warning which adds \n automatically. ErrorHandling.h had to be included in MetaSMTSolver.cpp to have klee_warning declared there. Signed-off-by: Jiri Slaby --- lib/Solver/STPSolver.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/Solver/STPSolver.cpp') 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; -- cgit 1.4.1