Skip to content

Commit a4ce604

Browse files
committed
fix klee path for method
1 parent 0e59302 commit a4ce604

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

server/src/KleeRunner.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,7 @@ void KleeRunner::processBatchWithInteractive(const std::vector<tests::TestMethod
318318
ExecUtils::throwIfCancelled();
319319

320320
for (const auto &method : testMethods) {
321-
std::string kleeMethodName =
322-
KleeUtils::entryPointFunction(tests, method.methodName, true);
323-
fs::path newKleeOut = kleeOut / kleeMethodName;
321+
fs::path newKleeOut = getKleeMethodOutFile(method);
324322
MethodKtests ktestChunk;
325323
processMethod(ktestChunk, tests, newKleeOut, method);
326324
ktests.push_back(ktestChunk);

0 commit comments

Comments
 (0)