summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/TestSuite.cpp
diff options
context:
space:
mode:
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 2a9306b9b11..25ef15d8a5e 100644
--- a/cpp/test/IceUtil/thread/TestSuite.cpp
+++ b/cpp/test/IceUtil/thread/TestSuite.cpp
@@ -18,6 +18,7 @@
#include <StartTest.h>
#include <MonitorMutexTest.h>
#include <MonitorRecMutexTest.h>
+#include <GCSharedTest.h>
std::list<TestBasePtr> allTests;
@@ -34,4 +35,5 @@ initializeTestSuite()
allTests.push_back(new StaticMutexTest);
allTests.push_back(new MonitorMutexTest);
allTests.push_back(new MonitorRecMutexTest);
+ allTests.push_back(new GCSharedTest);
}