summaryrefslogtreecommitdiff
path: root/tests/Param_Test/var_struct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Param_Test/var_struct.cpp')
-rw-r--r--tests/Param_Test/var_struct.cpp39
1 files changed, 16 insertions, 23 deletions
diff --git a/tests/Param_Test/var_struct.cpp b/tests/Param_Test/var_struct.cpp
index 5bf90ad5044..4dddf7fbfdf 100644
--- a/tests/Param_Test/var_struct.cpp
+++ b/tests/Param_Test/var_struct.cpp
@@ -1,28 +1,21 @@
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Param_Test
-//
-// = FILENAME
-// var_struct.cpp
-//
-// = DESCRIPTION
-// test variable sized structures
-//
-// = AUTHORS
-// Aniruddha Gokhale
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file var_struct.cpp
+ *
+ * $Id$
+ *
+ * test variable sized structures
+ *
+ *
+ * @author Aniruddha Gokhale
+ */
+//=============================================================================
+
#include "helper.h"
#include "var_struct.h"
-ACE_RCSID (Param_Test,
- var_struct,
- "$Id$")
-
// ************************************************************************
// Test_Var_Struct
// ************************************************************************
@@ -153,9 +146,9 @@ CORBA::Boolean
Test_Var_Struct::check_validity (void)
{
CORBA::Boolean flag = 0;
- if (this->in_.dbl == this->inout_->dbl &&
- this->in_.dbl == this->out_->dbl &&
- this->in_.dbl == this->ret_->dbl &&
+ if (ACE::is_equal (this->in_.dbl, this->inout_->dbl) &&
+ ACE::is_equal (this->in_.dbl, this->out_->dbl) &&
+ ACE::is_equal (this->in_.dbl, this->ret_->dbl) &&
(!ACE_OS::strcmp (this->in_.dummy1, this->inout_->dummy1)) &&
(!ACE_OS::strcmp (this->in_.dummy1, this->out_->dummy1)) &&
(!ACE_OS::strcmp (this->in_.dummy1, this->ret_->dummy1)) &&