summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation/main.cpp')
-rw-r--r--TAO/tests/Collocation/main.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/tests/Collocation/main.cpp b/TAO/tests/Collocation/main.cpp
deleted file mode 100644
index 84ce376b7fc..00000000000
--- a/TAO/tests/Collocation/main.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// $Id$
-
-#include "ace/streams.h"
-#include "ace/Get_Opt.h"
-#include "Coll_Tester.h"
-
-ACE_RCSID(Collocation, main, "$Id$")
-
-int main (int argc, char *argv[])
-{
- Collocation_Test coll_test;
-
- ACE_TRY_NEW_ENV
- {
- coll_test.init (argc, argv, ACE_TRY_ENV);
- ACE_TRY_CHECK;
-
- coll_test.run (ACE_TRY_ENV);
- ACE_TRY_CHECK;
- }
- ACE_CATCHANY
- {
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Uncaught exception: ");
- }
- ACE_ENDTRY;
-
- return 0;
-}