summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2595_Regression/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2595_Regression/client.cpp')
-rw-r--r--TAO/tests/Bug_2595_Regression/client.cpp84
1 files changed, 84 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2595_Regression/client.cpp b/TAO/tests/Bug_2595_Regression/client.cpp
new file mode 100644
index 00000000000..bc61f4e4d56
--- /dev/null
+++ b/TAO/tests/Bug_2595_Regression/client.cpp
@@ -0,0 +1,84 @@
+// $Id$
+
+#include "TestC.h"
+#include "ace/Get_Opt.h"
+
+ACE_RCSID(Hello, client, "$Id$")
+
+const char *ior = "file://test.ior";
+
+int
+parse_args (int argc, char *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, "k:");
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'k':
+ ior = get_opts.opt_arg ();
+ break;
+
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-k <ior> "
+ "\n",
+ argv [0]),
+ -1);
+ }
+ // Indicates sucessful parsing of the command line
+ return 0;
+}
+
+void get_stringList2(Test::Hello_var hello);
+
+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 tmp =
+ orb->string_to_object(ior);
+
+ Test::Hello_var hello =
+ Test::Hello::_narrow(tmp.in ());
+
+ if (CORBA::is_nil (hello.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Nil Test::Hello reference <%s>\n",
+ ior),
+ 1);
+ }
+
+ Test::Fls_var fstruct;
+ Test::Vls_var vstruct;
+
+ ACE_DEBUG ((LM_DEBUG, "\n(%P|%t) - op test 1\n"));
+ hello->op(fstruct.out(), vstruct.out());
+
+ ACE_DEBUG ((LM_DEBUG, "\n(%P|%t) - op test 2\n"));
+ hello->op(fstruct, vstruct.out());
+
+ hello->shutdown ();
+
+ orb->destroy ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ return 1;
+ }
+
+ return 0;
+}
+