From 5f8fc25570d9bc66b152da7c3343cb1a914a882c Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 12 Dec 2024 22:38:22 +0100 Subject: [PATCH] ... --- quotest/quotest.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 890245d2..4f468b2a 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -965,7 +965,13 @@ 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(failed.size() + running.size())); clog << lastWords.toStdString() << endl; + QCoreApplication::exit(0); QCoreApplication::exit(!testSuite ? -3 : succeeded.empty() && failed.empty() && running.empty()