summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-12-10 00:23:51 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-12-10 00:23:51 +0000
commit688e91dba0cfe1d27bb5510264216d0ae638a8c3 (patch)
treeec52a4b1f0aff2038afb282725c64fa950cd3ad2
parent5b49f0bc6ea66bdca710af41a1e16d5db7b17d84 (diff)
downloadATCD-688e91dba0cfe1d27bb5510264216d0ae638a8c3.tar.gz
ChangeLogTag:
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp8
-rw-r--r--TAO/orbsvcs/tests/Makefile9
3 files changed, 22 insertions, 5 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 2de9afeac44..c6ccf755815 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,13 @@
+Tue Dec 9 18:22:35 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * orbsvcs/tests/Makefile:
+
+ Added a bunch of new tests into the Makefiles for compilation.
+
+ * orbsvcs/tests/Bug_1630_Regression/testclient.cpp:
+
+ Fixed a compilation error.
+
Tue Dec 9 15:17:47 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_valuetype/field_cs.cpp (visit_union):
diff --git a/TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp b/TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp
index 7b2a6626b93..d34bd74da43 100644
--- a/TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp
+++ b/TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp
@@ -4,7 +4,7 @@
#include <tao/corba.h>
#include "IFR_Client/IFR_BasicC.h"
-
+#include "ace/OS_NS_string.h"
int main( int argc, char* argv[] )
{
@@ -135,7 +135,7 @@ int main( int argc, char* argv[] )
}
CORBA::NamedValue_ptr nv = opList->item( 0 ) ;
- if( strcmp( nv->name(), "p1") != 0 )
+ if(ACE_OS::strcmp( nv->name(), "p1") != 0 )
{
ACE_DEBUG((LM_DEBUG, "Test failed: param 1 wrong name\n"));
failed = 1 ;
@@ -153,7 +153,7 @@ int main( int argc, char* argv[] )
};
nv = opList->item( 1 ) ;
- if( strcmp( nv->name(), "p2") != 0 )
+ if(ACE_OS::strcmp( nv->name(), "p2") != 0 )
{
ACE_DEBUG((LM_DEBUG, "Test failed: param 2 wrong name\n"));
failed = 1 ;
@@ -170,7 +170,7 @@ int main( int argc, char* argv[] )
};
nv = opList->item( 2 ) ;
- if( strcmp( nv->name(), "p3") != 0 )
+ if(ACE_OS::strcmp( nv->name(), "p3") != 0 )
{
ACE_DEBUG((LM_DEBUG, "Test failed: param 3 wrong name\n"));
failed = 1 ;
diff --git a/TAO/orbsvcs/tests/Makefile b/TAO/orbsvcs/tests/Makefile
index 05605cc7510..c055d4040ad 100644
--- a/TAO/orbsvcs/tests/Makefile
+++ b/TAO/orbsvcs/tests/Makefile
@@ -60,7 +60,14 @@ DIRS += Concurrency \
Security \
Miop \
LoadBalancing \
- Log
+ Log \
+ Bug_1334_Regression \
+ Bug_1393_Regression \
+ Bug_1395_Regression \
+ Bug_1436_Regression \
+ Bug_1437_Regression \
+ Bug_1630_Regression \
+
ifeq ($(rt_corba),1)
ifeq ($(interceptors),1)