X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Ftestsuite.cpp;h=02d806480781e99d3e93cac1c8b0926b43ce1d80;hb=bc4828bbbde8a596b80b8f1d2c7349551f0f43b8;hp=719da031319c21455ea8ff360cd4a316c21b0bd2;hpb=4d4882d667c2c2eea180219e0c76d15cc1f49415;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 719da0313..02d806480 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -108,19 +108,33 @@ bool TestSuite::DoThreadTests() cout << "Creation failed, test failure.\n"; return false; } - cout << "Creation success!\n"; + cout << "Creation success, type " << te->GetName() << "\n"; - cout << "Creating new thread of type TestSuiteThread...\n"; + cout << "Allocate: new TestSuiteThread...\n"; TestSuiteThread* tst = new TestSuiteThread(); - cout << "Create new thread based on TestSuiteThread...\n"; - te->Create(tst); + cout << "ThreadEngine::Create on TestSuiteThread...\n"; + try + { + try + { + te->Create(tst); + } + catch (CoreException &ce) + { + cout << "Failure: " << ce.GetReason() << endl; + } + } + catch (...) + { + cout << "Failure, unhandled exception\n"; + } - cout << "Press any key to end test.\n"; - getchar(); + cout << "Type any line and press enter to end test.\n"; + cin >> anything; /* Thread engine auto frees thread on delete */ - cout << "Waiting for thread to exit..."; + cout << "Waiting for thread to exit... " << flush; delete tst; cout << "Done!\n";