diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-21 17:59:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-21 17:59:26 +0000 |
commit | 9bc7a6139db7ec7f1da676c486ca309f070a78e4 (patch) | |
tree | 64815fe756fac5bcbe61394a4596a137ba615095 /src | |
parent | 62f015300fc0c47337b62017598fef6ea3a6d024 (diff) |
ThreadEngine::GetName(), for display in /version
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8985 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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 841c1c41b..2396f142c 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -108,12 +108,12 @@ 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 << "Type any line and press enter to end test.\n"; |