Skip to content

Commit

Permalink
?!?
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasFella committed Dec 14, 2024
1 parent 48e697f commit ad3a132
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions quotest/quotest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -970,9 +970,14 @@ void TestManager::finalize(const QString& lastWords)
&& running.empty()
? -4
: static_cast<int>(failed.size() + running.size());
qWarning() << "Finished" << testSuite << succeeded.size() << failed.size() << running.size() << result;
qWarning() << "Finished" << result;
clog << lastWords.toStdString() << endl;
QCoreApplication::exit(result);
QCoreApplication::exit();
if (result) {
QCoreApplication::exit(result);
} else {
QCoreApplication::exit();
}
});
}

Expand Down

0 comments on commit ad3a132

Please sign in to comment.