diff options
Diffstat (limited to 'src/testsuite.cpp')
-rw-r--r-- | src/testsuite.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 719da0313..841c1c41b 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -116,11 +116,11 @@ bool TestSuite::DoThreadTests() cout << "Create new thread based 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"; |