summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/testsuite.cpp6
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";