summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/TestSuite.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-10-20 23:18:23 +0000
committerMichi Henning <michi@zeroc.com>2003-10-20 23:18:23 +0000
commit8941640745d51e543fadc0524368d5f861691152 (patch)
tree384020f2b665d7f1a1c20b5ea435e0bf74faf476 /cpp/test/IceUtil/thread/TestSuite.cpp
parentmerging changes from garbage collector (diff)
downloadice-8941640745d51e543fadc0524368d5f861691152.tar.bz2
ice-8941640745d51e543fadc0524368d5f861691152.tar.xz
ice-8941640745d51e543fadc0524368d5f861691152.zip
merging changes for garbage collector
Diffstat (limited to 'cpp/test/IceUtil/thread/TestSuite.cpp')
-rw-r--r--cpp/test/IceUtil/thread/TestSuite.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/TestSuite.cpp b/cpp/test/IceUtil/thread/TestSuite.cpp
index ab03cbcfad9..e15f1cc731b 100644
--- a/cpp/test/IceUtil/thread/TestSuite.cpp
+++ b/cpp/test/IceUtil/thread/TestSuite.cpp
@@ -16,6 +16,8 @@
#include <MutexTest.h>
#include <RecMutexTest.h>
#include <RWRecMutexTest.h>
+#include <StaticMutexTest.h>
+#include <StaticRecMutexTest.h>
#include <CreateTest.h>
#include <AliveTest.h>
#include <StartTest.h>
@@ -33,6 +35,8 @@ initializeTestSuite()
allTests.push_back(new MutexTest);
allTests.push_back(new RecMutexTest);
allTests.push_back(new RWRecMutexTest);
+ allTests.push_back(new StaticMutexTest);
+ allTests.push_back(new StaticRecMutexTest);
allTests.push_back(new MonitorMutexTest);
allTests.push_back(new MonitorRecMutexTest);
}