summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/TestSuite.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-02-10 16:12:42 +0100
committerJose <jose@zeroc.com>2015-02-10 16:12:42 +0100
commit5d20f8d730c593c75be0bd0057c74deb6672c0f3 (patch)
tree9589e9f87c94c7a597a5dfc3d6e3cd77e190882c /cpp/test/IceUtil/thread/TestSuite.cpp
parentRemoved IceDiscovery from android, UDP multicast isn't supported (diff)
downloadice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.tar.bz2
ice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.tar.xz
ice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.zip
Fixed (ICE-5975) - Improve IceUtil::ThreadControl::sleep and wait primitives to better handle negative values
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 c3e20b8a798..8a5f16ee09b 100644
--- a/cpp/test/IceUtil/thread/TestSuite.cpp
+++ b/cpp/test/IceUtil/thread/TestSuite.cpp
@@ -14,6 +14,7 @@
#include <CreateTest.h>
#include <AliveTest.h>
#include <StartTest.h>
+#include <SleepTest.h>
#include <MonitorMutexTest.h>
#include <MonitorRecMutexTest.h>
@@ -25,6 +26,7 @@ initializeTestSuite()
allTests.push_back(new MutexTest);
allTests.push_back(new CountDownLatchTest);
allTests.push_back(new StartTest);
+ allTests.push_back(new SleepTest);
allTests.push_back(new CreateTest);
allTests.push_back(new AliveTest);
allTests.push_back(new RecMutexTest);