Test executables should return instead of entering the event loop. The

test cases itself will run their own event loop anyway.
This commit is contained in:
Roland Winklmeier
2014-03-27 14:51:58 +01:00
parent 187dc04499
commit f1bf03067b
2 changed files with 2 additions and 2 deletions

View File

@@ -17,5 +17,5 @@ int main(int argc, char *argv[])
CBlackCoreTestMain::unitMain(argc, argv); CBlackCoreTestMain::unitMain(argc, argv);
// bye // bye
return a.exec(); return 0;
} }

View File

@@ -17,5 +17,5 @@ int main(int argc, char *argv[])
CBlackMiscTestMain::unitMain(argc, argv); CBlackMiscTestMain::unitMain(argc, argv);
// bye // bye
return a.exec(); return 0;
} }