summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/TestSuite.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-11-29 01:18:03 +0000
committerMichi Henning <michi@zeroc.com>2002-11-29 01:18:03 +0000
commit404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b (patch)
tree12023d167f8ab1b161aaec017a206863f4888bbf /cpp/test/IceUtil/thread/TestSuite.cpp
parentfixing potential deadlock with ObjectAdapter (diff)
downloadice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.tar.bz2
ice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.tar.xz
ice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.zip
Added ThreadControl::detach().
Diffstat (limited to 'cpp/test/IceUtil/thread/TestSuite.cpp')
-rw-r--r--cpp/test/IceUtil/thread/TestSuite.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/TestSuite.cpp b/cpp/test/IceUtil/thread/TestSuite.cpp
index 582509f9c9f..09d4e82fff6 100644
--- a/cpp/test/IceUtil/thread/TestSuite.cpp
+++ b/cpp/test/IceUtil/thread/TestSuite.cpp
@@ -17,6 +17,7 @@
#include <RecMutexTest.h>
#include <RWRecMutexTest.h>
#include <CreateTest.h>
+#include <DetachTest.h>
#include <MonitorMutexTest.h>
#include <MonitorRecMutexTest.h>
@@ -26,6 +27,7 @@ void
initializeTestSuite()
{
allTests.push_back(new CreateTest);
+ allTests.push_back(new DetachTest);
allTests.push_back(new MutexTest);
allTests.push_back(new RecMutexTest);
allTests.push_back(new RWRecMutexTest);