// ********************************************************************** // // Copyright (c) 2003 - 2004 // ZeroC, Inc. // North Palm Beach, FL, USA // // All Rights Reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #include #include #include #include #include #include #include #include #include #include #include std::list allTests; void initializeTestSuite() { allTests.push_back(new MutexTest); allTests.push_back(new CountDownLatchTest); allTests.push_back(new StartTest); allTests.push_back(new CreateTest); allTests.push_back(new AliveTest); allTests.push_back(new RecMutexTest); allTests.push_back(new RWRecMutexTest); allTests.push_back(new StaticMutexTest); allTests.push_back(new MonitorMutexTest); allTests.push_back(new MonitorRecMutexTest); }