summaryrefslogtreecommitdiff
path: root/TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp')
-rw-r--r--TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp69
1 files changed, 0 insertions, 69 deletions
diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp b/TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp
deleted file mode 100644
index 1f5b01d9818..00000000000
--- a/TAO/tests/Cubit/TAO/IDL_Cubit/IDL_Cubit_Test.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Cubit/TAO/IDL_Cubit
-//
-// = FILENAME
-// IDL_Cubit_Test.cpp
-//
-// = DESCRIPTION
-// This example tests the IDL Cubit server and client
-// components. The test forks and execs two processes to run both
-// the cubit client and the cubit server. The client makes calls on
-// the cubit server object and shutdowns the server in the end.
-// No command line arguments are needed to run the test.
-//
-// = AUTHOR
-// Nagarajan Surendran (naga@cs.wustl.edu)
-//
-// ============================================================================
-
-#include "tests/test_config.h"
-#include "ace/Process.h"
-
-int
-main (int, char *[])
-{
- ACE_START_TEST ("IDL_Cubit_Test:");
-
- ACE_Process_Options server_options;
- server_options.command_line ("./server -ORBport 0 -ORBobjrefstyle url");
- ACE_Process server;
-
- if (server.spawn (server_options) == -1)
- ACE_ERROR_RETURN ((LM_DEBUG,
- "%n %p.\n",
- "Server fork failed"),
- 0);
- else
- ACE_DEBUG ((LM_DEBUG,
- "Server forked with pid = %d.\n",
- server.getpid ()));
-
- ACE_OS::sleep (5);
-
- // create a client that will shutdown the server after the tests.
- ACE_Process_Options client_options;
- client_options.command_line ("./client -ORBport 0 -ORBobjrefstyle url -x");
- ACE_Process client;
-
- if (client.spawn (client_options) == -1)
- ACE_ERROR_RETURN ((LM_DEBUG,
- "%p.\n",
- "Client spawn failed"),
- 0);
- else
- ACE_DEBUG ((LM_DEBUG,
- "Client forked with pid = %d.\n",
- client.getpid ()));
-
- if (server.wait () < 0)
- ACE_DEBUG ((LM_DEBUG,"(%P|%t) Wait on server failed\n"));
- if (client.wait () < 0)
- ACE_DEBUG ((LM_DEBUG,"(%P|%t) Wait on client failed\n"));
-
- ACE_END_TEST;
- return 0;
-}