]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/testsuite.cpp
Change of configure message to plainer english as requested by voidzero
[user/henk/code/inspircd.git] / src / testsuite.cpp
index 719da031319c21455ea8ff360cd4a316c21b0bd2..2396f142c4a57ce76359340afa2e434e0134d575 100644 (file)
@@ -108,19 +108,19 @@ 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";
+       cout << "ThreadEngine::Create on TestSuiteThread...\n";
        te->Create(tst);
 
-       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";