diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 8b788b9d..b0b44bb8 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -185,7 +185,6 @@ namespace { cl::init(0)); } -extern bool WriteTraces; extern cl::opt<double> MaxTime; /***/ @@ -476,12 +475,6 @@ void KleeHandler::processTestCase(const ExecutionState &state, delete f; } - if (WriteTraces) { - std::ostream *f = openTestFile("trace", id); - state.exeTraceMgr.printAllEvents(*f); - delete f; - } - if (m_testIndex == StopAfterNTests) m_interpreter->setHaltExecution(true); |