summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple/Collocation_Tester.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple/Collocation_Tester.cpp')
-rw-r--r--TAO/tests/Multiple/Collocation_Tester.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/TAO/tests/Multiple/Collocation_Tester.cpp b/TAO/tests/Multiple/Collocation_Tester.cpp
index 886e9d81830..0723c2e42f8 100644
--- a/TAO/tests/Multiple/Collocation_Tester.cpp
+++ b/TAO/tests/Multiple/Collocation_Tester.cpp
@@ -39,7 +39,7 @@ Collocation_Tester::match_answer (const char *actual_answer,
}
int
-Collocation_Tester::test_top (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::test_top (TAO_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT("\n------------------------<TOP>-------------------------------\n")));
@@ -58,7 +58,7 @@ Collocation_Tester::test_top (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nCalling all method supported by the Interface Top\n\n")));
- CORBA::String_var msg = top->top_quote (ACE_TRY_ENV);
+ CORBA::String_var msg = top->top_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
failure += this->match_answer (Quote::top, msg.in (), "top_quote");
@@ -74,7 +74,7 @@ Collocation_Tester::test_top (CORBA::Environment &ACE_TRY_ENV)
}
int
-Collocation_Tester::test_right (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::test_right (TAO_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT("\n------------------------<RIGHT>-------------------------------\n")));
@@ -93,12 +93,12 @@ Collocation_Tester::test_right (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nCalling all method supported by the Interface Right\n\n")));
- CORBA::String_var msg = right->top_quote (ACE_TRY_ENV);
+ CORBA::String_var msg = right->top_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (1);
failure += this->match_answer (Quote::top, msg.in (), "top_quote");
- msg = right->right_quote (ACE_TRY_ENV);
+ msg = right->right_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (1);
failure += this->match_answer (Quote::right, msg.in (), "right_quote");
@@ -115,7 +115,7 @@ Collocation_Tester::test_right (CORBA::Environment &ACE_TRY_ENV)
int
-Collocation_Tester::test_left (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::test_left (TAO_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT("\n------------------------<LEFT>-------------------------------\n")));
@@ -135,12 +135,12 @@ Collocation_Tester::test_left (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nCalling all method supported by the Interface Left\n\n")));
- CORBA::String_var msg = left->top_quote (ACE_TRY_ENV);
+ CORBA::String_var msg = left->top_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (1);
failure += this->match_answer (Quote::top, msg.in (), "top_quote");
- msg = left->left_quote (ACE_TRY_ENV);
+ msg = left->left_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN(1);
failure += this->match_answer (Quote::left, msg.in (), "left_quote");
@@ -157,7 +157,7 @@ Collocation_Tester::test_left (CORBA::Environment &ACE_TRY_ENV)
int
-Collocation_Tester::test_bottom (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::test_bottom (TAO_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT("\n-----------------------<BOTTOM>-------------------------------\n")));
@@ -177,22 +177,22 @@ Collocation_Tester::test_bottom (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nCalling all method supported by the Interface Bottom\n\n")));
- CORBA::String_var msg = bottom->top_quote (ACE_TRY_ENV);
+ CORBA::String_var msg = bottom->top_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN(1);
failure += this->match_answer (Quote::top, msg.in (), "top_quote");
- msg = bottom->left_quote (ACE_TRY_ENV);
+ msg = bottom->left_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (1);
failure += this->match_answer (Quote::left, msg.in (), "left_quote");
- msg = bottom->right_quote (ACE_TRY_ENV);
+ msg = bottom->right_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN(1);
failure += this->match_answer (Quote::right, msg.in (), "right_quote");
- msg = bottom->bottom_quote (ACE_TRY_ENV);
+ msg = bottom->bottom_quote (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN(1);
failure += this->match_answer (Quote::bottom, msg.in (), "bottom_quote");
@@ -208,7 +208,7 @@ Collocation_Tester::test_bottom (CORBA::Environment &ACE_TRY_ENV)
}
void
-Collocation_Tester::shutdown (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::shutdown (TAO_ENV_SINGLE_ARG_DECL)
{
Multiple::Top_var top =
Multiple::Top::_narrow (this->object_.in ());
@@ -223,23 +223,23 @@ Collocation_Tester::shutdown (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nCalling ShutDown on Top.\n\n")));
- top->shutdown (ACE_TRY_ENV);
+ top->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
}
void
-Collocation_Tester::run (CORBA::Environment &ACE_TRY_ENV)
+Collocation_Tester::run (TAO_ENV_SINGLE_ARG_DECL)
{
- int failure_num = this->test_top (ACE_TRY_ENV);
+ int failure_num = this->test_top (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
- failure_num += this->test_left (ACE_TRY_ENV);
+ failure_num += this->test_left (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
- failure_num += this->test_right (ACE_TRY_ENV);
+ failure_num += this->test_right (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
- failure_num += this->test_bottom (ACE_TRY_ENV);
+ failure_num += this->test_bottom (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
if (failure_num)
@@ -249,5 +249,5 @@ Collocation_Tester::run (CORBA::Environment &ACE_TRY_ENV)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n\nThe Test Completed Successfully. Congratulations! ")));
- this->shutdown (ACE_TRY_ENV);
+ this->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
}