summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2084_Regression/Collocated_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-24 15:39:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-24 15:39:09 +0000
commitc801f87e59c00f72bdeb5ce7bd0d276674665bac (patch)
tree70bff03d1cf156ecf05ee4c5c338d8ce423e64ee /TAO/tests/Bug_2084_Regression/Collocated_Test.cpp
parent98c0b37d4714ff774fc3ada8c9ee893c719af714 (diff)
downloadATCD-c801f87e59c00f72bdeb5ce7bd0d276674665bac.tar.gz
Wed Jan 24 14:00:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Bug_2084_Regression/Collocated_Test.cpp')
-rw-r--r--TAO/tests/Bug_2084_Regression/Collocated_Test.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/TAO/tests/Bug_2084_Regression/Collocated_Test.cpp b/TAO/tests/Bug_2084_Regression/Collocated_Test.cpp
index a16745c918a..42ddb1532f7 100644
--- a/TAO/tests/Bug_2084_Regression/Collocated_Test.cpp
+++ b/TAO/tests/Bug_2084_Regression/Collocated_Test.cpp
@@ -68,7 +68,6 @@ main (int argc, char *argv[])
satc.get_TCHAR_argv (),
server_orb.c_str ()
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
ACE_Manual_Event me;
Server_Task server_task (output,
@@ -93,7 +92,6 @@ main (int argc, char *argv[])
catc.get_TCHAR_argv(),
client_orb.c_str ()
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
Client_Task client_task (input,
corb.in (),
@@ -110,12 +108,10 @@ 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