summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2349_Regression/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2349_Regression/client.cpp')
-rw-r--r--TAO/tests/Bug_2349_Regression/client.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/tests/Bug_2349_Regression/client.cpp b/TAO/tests/Bug_2349_Regression/client.cpp
deleted file mode 100644
index c2c7cbc30f5..00000000000
--- a/TAO/tests/Bug_2349_Regression/client.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-
-#include "fooC.h"
-#include "ace/Log_Msg.h"
-
-const char* ior = "file://server.ior";
-
-int
-main (int argc, char** argv)
-{
- try
- {
- CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
-
- CORBA::Object_var tmp = orb->string_to_object(ior);
-
- foo_var server = foo::_narrow(tmp.in ());
-
- if (CORBA::is_nil (server.in ()))
- {
- ACE_ERROR_RETURN ((LM_DEBUG,
- "Nil foo reference <%s>\n",
- ior),
- 1);
- }
-
- server->shutdown ();
-
- orb->destroy ();
- }
- catch (const CORBA::Exception& ex)
- {
- ex._tao_print_exception ("CORBA::Exception");
- }
-
- return 0;
-}