summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Logger/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Logger/server.cpp')
-rw-r--r--TAO/orbsvcs/tests/Logger/server.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/orbsvcs/tests/Logger/server.cpp b/TAO/orbsvcs/tests/Logger/server.cpp
deleted file mode 100644
index 1d8db63fdf8..00000000000
--- a/TAO/orbsvcs/tests/Logger/server.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-#include "server_i.h"
-
-ACE_RCSID(Logger, server, "$Id$")
-
-int
-main (int argc, char *argv[])
-{
- Logger_Server log_server;
-
- ACE_DEBUG ((LM_DEBUG,
- "\n\tIDL_Logger:SERVER\n\n"));
-
- TAO_TRY
- {
- if (log_server.init (argc, argv, TAO_TRY_ENV) == -1)
- return 1;
- else
- {
- log_server.run (TAO_TRY_ENV);
- TAO_CHECK_ENV;
- }
- }
- TAO_CATCH (CORBA::SystemException, sysex)
- {
- ACE_UNUSED_ARG (sysex);
- TAO_TRY_ENV.print_exception ("System Exception");
- return -1;
- }
- TAO_CATCH (CORBA::UserException, userex)
- {
- ACE_UNUSED_ARG (userex);
- TAO_TRY_ENV.print_exception ("User Exception");
- return -1;
- }
- TAO_ENDTRY;
-
- return 0;
-}
-
-