X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Ftestsuite.cpp;h=02d806480781e99d3e93cac1c8b0926b43ce1d80;hb=bc4828bbbde8a596b80b8f1d2c7349551f0f43b8;hp=60817970333b0d0cd85b85bf7d5e5d1873c90953;hpb=4e5244a4d82ea5083c401ac04440cb8dd6003941;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 608179703..02d806480 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -33,10 +33,10 @@ class TestSuiteThread : public Thread virtual void Run() { - while (1) + while (GetExitFlag() == false) { cout << "Test suite thread run...\n"; - sleep(10); + sleep(5); } } }; @@ -108,21 +108,39 @@ bool TestSuite::DoThreadTests() cout << "Creation failed, test failure.\n"; return false; } - cout << "Creation success!\n"; - - cout << "Creating new thread of type TestSuiteThread\n"; + cout << "Creation success, type " << te->GetName() << "\n"; + cout << "Allocate: new TestSuiteThread...\n"; TestSuiteThread* tst = new TestSuiteThread(); - 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 enter to end test."; + cout << "Type any line and press enter to end test.\n"; cin >> anything; - /* Auto frees thread */ + /* Thread engine auto frees thread on delete */ + cout << "Waiting for thread to exit... " << flush; delete tst; + cout << "Done!\n"; + cout << "Delete ThreadEngine... "; delete te; + cout << "Done!\n"; return true; }