summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple/client.cpp')
-rw-r--r--TAO/tests/Multiple/client.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/TAO/tests/Multiple/client.cpp b/TAO/tests/Multiple/client.cpp
index 8a2d499abce..c46d30c0406 100644
--- a/TAO/tests/Multiple/client.cpp
+++ b/TAO/tests/Multiple/client.cpp
@@ -12,13 +12,11 @@ int main (int argc, char *argv[])
{
// ORB Initialization
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, "TAO" ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
CORBA::Object_var object;
// Get The IOR from a file
object = orb->string_to_object ("file://s.ior" ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
if (CORBA::is_nil (object.in ()))
{
@@ -27,8 +25,7 @@ int main (int argc, char *argv[])
}
Collocation_Tester tester (object.in ());
- tester.run (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ tester.run ();
}
ACE_CATCHANY
{