From 48e697fa171d8aef8be7722ddf619bdab18f7df8 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sat, 14 Dec 2024 10:33:32 +0100 Subject: [PATCH] ?? --- quotest/quotest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 5c7e5be5..0190bbda 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -965,12 +965,13 @@ void TestManager::finalize(const QString& lastWords) clog << "Logging out" << endl; c->logout().then( this, [this, lastWords] { - clog << lastWords.toStdString() << endl; auto result = !testSuite ? -3 : succeeded.empty() && failed.empty() && running.empty() ? -4 : static_cast(failed.size() + running.size()); + qWarning() << "Finished" << testSuite << succeeded.size() << failed.size() << running.size() << result; + clog << lastWords.toStdString() << endl; QCoreApplication::exit(result); }); }