summaryrefslogtreecommitdiff
path: root/TAO/tests/ORT/ServerORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORT/ServerORBInitializer.cpp')
-rw-r--r--TAO/tests/ORT/ServerORBInitializer.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/TAO/tests/ORT/ServerORBInitializer.cpp b/TAO/tests/ORT/ServerORBInitializer.cpp
index 40853060d7b..ec5915d4aec 100644
--- a/TAO/tests/ORT/ServerORBInitializer.cpp
+++ b/TAO/tests/ORT/ServerORBInitializer.cpp
@@ -29,18 +29,15 @@ ServerORBInitializer::post_init (
CORBA::Object_var obj =
info->resolve_initial_references ("POACurrent"
ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
PortableServer::Current_var poa_current =
PortableServer::Current::_narrow (obj.in ()
ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
ACE_ASSERT (!CORBA::is_nil (poa_current.in ()));
- CORBA::String_var orb_id = info->orb_id (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
+ CORBA::String_var orb_id = info->orb_id ();
// Create and register the test's ServerRequestInterceptor
@@ -53,13 +50,11 @@ ServerORBInitializer::post_init (
TAO::VMCID,
ENOMEM),
CORBA::COMPLETED_NO));
- ACE_CHECK;
PortableInterceptor::ServerRequestInterceptor_var server_interceptor = tmp;
info->add_server_request_interceptor (server_interceptor.in ()
ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
// Create and register the test's IORInterceptor
@@ -72,12 +67,10 @@ ServerORBInitializer::post_init (
TAO::VMCID,
ENOMEM),
CORBA::COMPLETED_NO));
- ACE_CHECK;
PortableInterceptor::IORInterceptor_var ior_interceptor =
ort_test_interceptor;
info->add_ior_interceptor (ior_interceptor.in ()
ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
}