From 24b5aaa2fef00e82bbc17def26b76f83c73dc977 Mon Sep 17 00:00:00 2001 From: Tyler Dauwalder Date: Thu, 18 Jul 2002 05:25:59 +0000 Subject: [PATCH] Obsolete git-svn-id: file:///srv/svn/repos/haiku/trunk/current@300 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kits/support/blocker/LockerTestAddon.cpp | 55 ------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/tests/kits/support/blocker/LockerTestAddon.cpp diff --git a/src/tests/kits/support/blocker/LockerTestAddon.cpp b/src/tests/kits/support/blocker/LockerTestAddon.cpp deleted file mode 100644 index 8586b2238d..0000000000 --- a/src/tests/kits/support/blocker/LockerTestAddon.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/* - $Id: LockerTestAddon.cpp,v 1.1 2002/07/09 12:24:58 ejakowatz Exp $ - - This file declares the addonTestName string and addonTestFunc - function for the BLocker tests. These symbols will be used - when the addon is loaded. - - */ - - -#include "ConstructionTest1.h" -#include "ConcurrencyTest1.h" -#include "ConcurrencyTest2.h" -#include "DestructionTest1.h" -#include "DestructionTest2.h" -#include "BenaphoreLockCountTest1.h" -#include "SemaphoreLockCountTest1.h" -#include -#include "Locker.h" -#include "TestAddon.h" -#include "TestSuite.h" - - -/* - * Function: addonTestFunc() - * Descr: This function is called by the test application to - * get a pointer to the test to run. The BLocker test - * is a test suite. A series of tests are added to - * the suite. Each test appears twice, once for - * the Be implementation of BLocker, once for the - * OpenBeOS implementation. - */ - -Test *addonTestFunc(void) -{ - TestSuite *testSuite = new TestSuite("Blocker"); - - testSuite->addTest(ConstructionTest1::suite()); - testSuite->addTest(ConcurrencyTest1::suite()); - testSuite->addTest(ConcurrencyTest2::suite()); - testSuite->addTest(DestructionTest1::suite()); - testSuite->addTest(DestructionTest2::suite()); - testSuite->addTest(BenaphoreLockCountTest1::suite()); - testSuite->addTest(SemaphoreLockCountTest1::suite()); - - testSuite->addTest(ConstructionTest1::suite()); - testSuite->addTest(ConcurrencyTest1::suite()); - testSuite->addTest(ConcurrencyTest2::suite()); - testSuite->addTest(DestructionTest1::suite()); - testSuite->addTest(DestructionTest2::suite()); - testSuite->addTest(BenaphoreLockCountTest1::suite()); - testSuite->addTest(SemaphoreLockCountTest1::suite()); - - return(testSuite); -}