Fix unit test return values

This commit is contained in:
Roland Winklmeier
2015-05-30 13:17:15 +02:00
parent e4f2c9e88a
commit 041c97be75
2 changed files with 3 additions and 9 deletions

View File

@@ -17,9 +17,7 @@ using namespace BlackCoreTest;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
CBlackCoreTestMain::unitMain(argc, argv);
Q_UNUSED(a);
// bye
return 0;
return CBlackCoreTestMain::unitMain(argc, argv);
}