Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasFella committed Dec 12, 2024
1 parent cccd82b commit 43c19e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions quotest/quotest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,11 @@ void TestManager::finalize(const QString& lastWords)
clog << "Logging out" << endl;
c->logout().then(
this, [this, lastWords] {
qWarning() << "Finished" << testSuite << succeeded.size() << failed.size() << running.size() << (!testSuite ? -3
: succeeded.empty() && failed.empty()
&& running.empty()
? -4
: static_cast<int>(failed.size() + running.size()));
clog << lastWords.toStdString() << endl;
QCoreApplication::exit(!testSuite ? -3
: succeeded.empty() && failed.empty()
Expand Down

0 comments on commit 43c19e1

Please sign in to comment.