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 94636bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quotest/quotest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ void TestManager::finalize(const QString& lastWords)
: static_cast<int>(failed.size() + running.size());
qWarning() << "Finished" << testSuite << succeeded.size() << failed.size() << running.size() << result;
clog << lastWords.toStdString() << endl;
QCoreApplication::exit(result);
QCoreApplication::exit(result == 0 ? 0 : result);
});
}

Expand Down

0 comments on commit 94636bd

Please sign in to comment.