diff options
author | Andrea Mattavelli <andreamattavelli@gmail.com> | 2017-07-28 14:32:33 +0100 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2017-08-01 14:33:05 +0100 |
commit | a4ed54c2b8228a30785c11d7542427a1bd1f7292 (patch) | |
tree | 71df7bc60fb9ec30b1be1cc58c36988f958fcf13 /tools | |
parent | 977e032add0e29683bc4edc8c03aef9a81fb6d6a (diff) | |
download | klee-a4ed54c2b8228a30785c11d7542427a1bd1f7292.tar.gz |
Fixed test case counter: Previously the number of test cases generated by KLEE was always incremented, even if a symbolic solution was not found.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 8e3431d3..26ec6c7f 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -220,7 +220,8 @@ private: SmallString<128> m_outputDirectory; - unsigned m_testIndex; // number of tests written so far + unsigned m_numTotalTests; // Number of tests received from the interpreter + unsigned m_numGeneratedTests; // Number of tests successfully generated unsigned m_pathsExplored; // number of paths explored so far // used for writing .ktest files @@ -232,7 +233,8 @@ public: ~KleeHandler(); llvm::raw_ostream &getInfoStream() const { return *m_infoFile; } - unsigned getNumTestCases() { return m_testIndex; } + /// Returns the number of test cases successfully generated so far + unsigned getNumTestCases() { return m_numGeneratedTests; } unsigned getNumPathsExplored() { return m_pathsExplored; } void incPathsExplored() { m_pathsExplored++; } @@ -258,15 +260,9 @@ public: }; KleeHandler::KleeHandler(int argc, char **argv) - : m_interpreter(0), - m_pathWriter(0), - m_symPathWriter(0), - m_infoFile(0), - m_outputDirectory(), - m_testIndex(0), - m_pathsExplored(0), - m_argc(argc), - m_argv(argv) { + : m_interpreter(0), m_pathWriter(0), m_symPathWriter(0), m_infoFile(0), + m_outputDirectory(), m_numTotalTests(0), m_numGeneratedTests(0), + m_pathsExplored(0), m_argc(argc), m_argv(argv) { // create output directory (OutputDir or "klee-out-<i>") bool dir_given = OutputDir != ""; @@ -411,7 +407,7 @@ void KleeHandler::processTestCase(const ExecutionState &state, double start_time = util::getWallTime(); - unsigned id = ++m_testIndex; + unsigned id = ++m_numTotalTests; if (success) { KTest b; @@ -433,6 +429,8 @@ void KleeHandler::processTestCase(const ExecutionState &state, if (!kTest_toFile(&b, getOutputFilename(getTestFilename("ktest", id)).c_str())) { klee_warning("unable to write output test case, losing it"); + } else { + ++m_numGeneratedTests; } for (unsigned i=0; i<b.numObjects; i++) @@ -511,7 +509,7 @@ void KleeHandler::processTestCase(const ExecutionState &state, delete f; } - if (m_testIndex == StopAfterNTests) + if (m_numGeneratedTests == StopAfterNTests) m_interpreter->setHaltExecution(true); if (WriteTestInfo) { |