summaryrefslogtreecommitdiff
path: root/TAO/tests/Native_Exceptions/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Native_Exceptions/client.cpp')
-rw-r--r--TAO/tests/Native_Exceptions/client.cpp99
1 files changed, 0 insertions, 99 deletions
diff --git a/TAO/tests/Native_Exceptions/client.cpp b/TAO/tests/Native_Exceptions/client.cpp
deleted file mode 100644
index e8df2eb8e65..00000000000
--- a/TAO/tests/Native_Exceptions/client.cpp
+++ /dev/null
@@ -1,99 +0,0 @@
-// $Id$
-
-#include "ace/Get_Opt.h"
-#include "testC.h"
-
-ACE_RCSID(Native_Exceptions, client, "$Id$")
-
-const char *ior = "file://test.ior";
-int niterations = 100;
-
-int
-parse_args (int argc, char *argv[])
-{
- ACE_Get_Opt get_opts (argc, argv, "k:i:");
- int c;
-
- while ((c = get_opts ()) != -1)
- switch (c)
- {
- case 'k':
- ior = get_opts.optarg;
- break;
-
- case 'i':
- niterations = ACE_OS::atoi (get_opts.optarg);
- break;
-
- case '?':
- default:
- ACE_ERROR_RETURN ((LM_ERROR,
- "usage: %s "
- "-k <ior> "
- "-i <niterations> "
- "\n",
- argv [0]),
- -1);
- }
- // Indicates sucessful parsing of the command line
- return 0;
-}
-
-int
-main (int argc, char *argv[])
-{
- try
- {
- CORBA::ORB_var orb =
- CORBA::ORB_init (argc, argv, "");
-
- if (parse_args (argc, argv) != 0)
- return 1;
-
- CORBA::Object_var object =
- orb->string_to_object (ior);
-
- Simple_Server_var server =
- Simple_Server::_narrow (object.in ());
-
- if (CORBA::is_nil (server.in ()))
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "Object reference <%s> is nil\n",
- ior),
- 1);
- }
-
- for (int i = 0; i != niterations; ++i)
- {
- CORBA::Long number = i;
-
- if (server->test_method (i) != i)
- {
- ACE_ERROR ((LM_ERROR,
- "Unexpected result from test_method\n"));
- }
-
- try
- {
- server->test_raise (i);
- ACE_ERROR ((LM_ERROR,
- "The test_raise call didn't raise\n"));
- }
- catch (Simple_Server::Failure &fail)
- {
- ACE_UNUSED_ARG (fail);
- // Do nothing, this is the normal behavior...
- }
- }
-
- server->shutdown ();
- }
- catch (CORBA::SystemException &ex)
- {
- ACE_PRINT_EXCEPTION (ex, "Catched exception:");
- return 1;
- }
-
- return 0;
-}