2 #include "ace/Get_Opt.h"
3 // Ensure that the PI library is linked in when building statically
5 #include "orbsvcs/FaultTolerance/FT_ClientService_Activate.h"
10 const ACE_TCHAR
*ior
= ACE_TEXT("file://test.ior");
13 parse_args (int argc
, ACE_TCHAR
*argv
[])
15 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:"));
18 while ((c
= get_opts ()) != -1)
22 ior
= get_opts
.opt_arg ();
27 ACE_ERROR_RETURN ((LM_ERROR
,
34 // Indicates successful parsing of the command line
39 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
41 CORBA::Boolean result
= 0;
45 CORBA::ORB_init (argc
, argv
);
47 if (parse_args (argc
, argv
) != 0)
50 CORBA::Object_var tmp
=
51 orb
->string_to_object(ior
);
53 Test::Hello_var hello
=
54 Test::Hello::_narrow(tmp
.in ());
56 if (CORBA::is_nil (hello
.in ()))
58 ACE_ERROR_RETURN ((LM_DEBUG
,
59 "Test failed - Not regression - Unexpected Nil Test::Hello reference <%s>\n",
64 // Check this isn't generating transients for any other reason
70 hello
->throw_location_forward ();
72 ACE_DEBUG ((LM_ERROR
, "REGRESSION - Test has failed !!!\n"));
75 catch (const CORBA::TRANSIENT
& my_ex
)
77 ACE_UNUSED_ARG (my_ex
);
78 ACE_DEBUG ((LM_DEBUG
, "Client catches a TRANSIENT, as expected. No problem !\n"));
85 catch (const CORBA::Exception
& ex
)
87 ex
._tao_print_exception (
88 "Test failed (Not regression) because unexpected exception caught:");
94 ACE_DEBUG ((LM_ERROR
, "Error: REGRESSION identified!!!\n"));
98 ACE_DEBUG ((LM_DEBUG
, "Test passed !!!\n"));