From 4e5244a4d82ea5083c401ac04440cb8dd6003941 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 21 Feb 2008 17:11:31 +0000 Subject: Now buildble. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8982 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/testsuite.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/testsuite.cpp') diff --git a/src/testsuite.cpp b/src/testsuite.cpp index a129ecc72..608179703 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -22,6 +22,7 @@ using namespace std; class TestSuiteThread : public Thread { + public: TestSuiteThread() : Thread() { } @@ -93,11 +94,13 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) bool TestSuite::DoThreadTests() { std::string anything; + ThreadEngine* te = NULL; + cout << "Creating new ThreadEngine class...\n"; try { ThreadEngineFactory* tef = new ThreadEngineFactory(); - ThreadEngine* te = tef->Create(ServerInstance); + te = tef->Create(ServerInstance); delete tef; } catch (...) @@ -113,7 +116,7 @@ bool TestSuite::DoThreadTests() te->Create(tst); - cout >> "Press enter to end test."; + cout << "Press enter to end test."; cin >> anything; /* Auto frees thread */ -- cgit v1.2.3