summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation_Tests/Collocated_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation_Tests/Collocated_Test.cpp')
-rw-r--r--TAO/tests/Collocation_Tests/Collocated_Test.cpp20
1 files changed, 6 insertions, 14 deletions
diff --git a/TAO/tests/Collocation_Tests/Collocated_Test.cpp b/TAO/tests/Collocation_Tests/Collocated_Test.cpp
index f807f7bf5b3..5c5dae3a745 100644
--- a/TAO/tests/Collocation_Tests/Collocated_Test.cpp
+++ b/TAO/tests/Collocation_Tests/Collocated_Test.cpp
@@ -47,16 +47,13 @@ main (int argc, char *argv[])
argv) == -1)
return -1;
- ACE_DECLARE_NEW_CORBA_ENV;
- ACE_TRY
+ try
{
ACE_Argv_Type_Converter satc (argc, argv);
CORBA::ORB_var sorb =
CORBA::ORB_init (satc.get_argc (),
satc.get_TCHAR_argv (),
- server_orb.c_str ()
- ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ server_orb.c_str ());
ACE_Manual_Event me;
Server_Task server_task (output,
@@ -78,9 +75,7 @@ main (int argc, char *argv[])
CORBA::ORB_var corb =
CORBA::ORB_init (catc.get_argc (),
catc.get_TCHAR_argv (),
- client_orb.c_str ()
- ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ client_orb.c_str ());
Client_Task client_task (input,
corb.in (),
@@ -97,18 +92,15 @@ main (int argc, char *argv[])
ACE_Thread_Manager::instance ()->wait ();
// Now that all threads have completed we can destroy the ORB
- sorb->destroy (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ sorb->destroy ();
if (server_orb != client_orb)
{
- corb->destroy (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ corb->destroy ();
}
}
- ACE_CATCHANY
+ catch (const CORBA::Exception&)
{
// Ignore exceptions..
}
- ACE_ENDTRY;
return 0;
}