summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/bd_struct_seq.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/Param_Test/bd_struct_seq.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/Param_Test/bd_struct_seq.cpp')
-rw-r--r--TAO/tests/Param_Test/bd_struct_seq.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/TAO/tests/Param_Test/bd_struct_seq.cpp b/TAO/tests/Param_Test/bd_struct_seq.cpp
index 1c2593b9f40..40dc7e39d00 100644
--- a/TAO/tests/Param_Test/bd_struct_seq.cpp
+++ b/TAO/tests/Param_Test/bd_struct_seq.cpp
@@ -19,8 +19,8 @@
#include "helper.h"
#include "bd_struct_seq.h"
-ACE_RCSID (Param_Test,
- bd_struct_seq,
+ACE_RCSID (Param_Test,
+ bd_struct_seq,
"$Id$")
const CORBA::ULong MAX_STRUCTSEQ_LEN = 1;
@@ -60,8 +60,7 @@ Test_Bounded_Struct_Sequence::dii_req_invoke (CORBA::Request *req
req->add_out_arg ("s3") <<= this->out_.in ();
req->set_return_type (Param_Test::_tc_Bounded_StructSeq);
- req->invoke (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
+ req->invoke ();
Param_Test::Bounded_StructSeq *tmp;
req->return_value () >>= tmp;
@@ -69,13 +68,11 @@ Test_Bounded_Struct_Sequence::dii_req_invoke (CORBA::Request *req
CORBA::NamedValue_ptr arg2 =
req->arguments ()->item (1 ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
*arg2->value () >>= tmp;
this->inout_ = new Param_Test::Bounded_StructSeq (*tmp);
CORBA::NamedValue_ptr arg3 =
req->arguments ()->item (2 ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
*arg3->value () >>= tmp;
this->out_ = new Param_Test::Bounded_StructSeq (*tmp);
}
@@ -129,7 +126,6 @@ Test_Bounded_Struct_Sequence::run_sii_test (Param_Test_ptr objref
this->inout_.inout (),
out
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
return 0;
}