summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp')
-rw-r--r--CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp b/CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp
deleted file mode 100644
index f0f56774186..00000000000
--- a/CIAO/connectors/dds4ccm/tests/Policies/partition_qos_test.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-
-#include "partition_qos_test.h"
-
-PartitionPolicyTest::PartitionPolicyTest ()
-{
-}
-
-bool
-PartitionPolicyTest::check (const ::DDS_PartitionQosPolicy & dds_qos,
- const ::DDS::PartitionQosPolicy & qos)
-{
- if (static_cast <CORBA::ULong> (dds_qos.name.length ()) !=
- qos.name.length ())
- {
- ACE_ERROR ((LM_ERROR, "ERROR PartitionPolicyTest : "
- "Length name sequence is not equal "
- "to original length.\n"));
- return false;
- }
- for (DDS_Long i = 0; i < dds_qos.name.length (); ++i)
- {
- if (ACE_OS::strcmp (dds_qos.name[i], qos.name[i]) != 0)
- {
- ACE_ERROR ((LM_ERROR, "ERROR PartitionPolicyTest : "
- "Item %d of name sequence is not equal "
- "to original.\n",
- i));
- return false;
- }
- }
- return true;
-}