summaryrefslogtreecommitdiff
path: root/src/testsuite.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-22 18:17:48 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-22 18:17:48 +0000
commit223e2c9a145abd09bb18c2cc17b94a77564b8b25 (patch)
tree8231df7394a5268e037b709e7db11f1a4d1359e1 /src/testsuite.cpp
parent59c8e5d0644eab87ab7c8f21f8ca2eb1ae81a8da (diff)
Forgot to initialize critical section. somehow, the new logging code exposed this error???
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9005 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/testsuite.cpp')
-rw-r--r--src/testsuite.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp
index 14ea7ebed..02d806480 100644
--- a/src/testsuite.cpp
+++ b/src/testsuite.cpp
@@ -116,11 +116,18 @@ bool TestSuite::DoThreadTests()
cout << "ThreadEngine::Create on TestSuiteThread...\n";
try
{
- te->Create(tst);
+ try
+ {
+ te->Create(tst);
+ }
+ catch (CoreException &ce)
+ {
+ cout << "Failure: " << ce.GetReason() << endl;
+ }
}
- catch (CoreException &ce)
+ catch (...)
{
- cout << "Failure: " << ce.GetReason() << endl;
+ cout << "Failure, unhandled exception\n";
}
cout << "Type any line and press enter to end test.\n";