You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2005/12/30 00:17:24 UTC

svn commit: r359924 - in /webservices/axis/trunk/c/tests/auto_build/testcases: client/cpp/ tests/

Author: nadiramra
Date: Thu Dec 29 15:17:18 2005
New Revision: 359924

URL: http://svn.apache.org/viewcvs?rev=359924&view=rev
Log:
OS/400-only changes to make test framework work.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/AxisBenchClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/CommonClientTestCode.hpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllComplexChildClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ManyTypeRefRootClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SimpleTypeArrayClient.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/tests/CalculatorDocMany.xml

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/AxisBenchClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/AxisBenchClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/AxisBenchClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/AxisBenchClient.cpp Thu Dec 29 15:17:18 2005
@@ -34,7 +34,7 @@
 void setLogOptions(const char *output_filename);
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 #define WSDL_DEFAULT_ENDPOINT "http://localhost:9080/AxisBench/services/AxisBenchSoapImpl"
 

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/CommonClientTestCode.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/CommonClientTestCode.hpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/CommonClientTestCode.hpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/CommonClientTestCode.hpp Thu Dec 29 15:17:18 2005
@@ -92,7 +92,7 @@
  140,  73, 205, 206, 203, 207, 204, 225, 112, 221, 222, 219, 220, 141, 142, 223   
 };
 
-char* stringToAscii( char *string )
+static char* stringToAscii( char *string )
 {
    char* pch = string;
    if( string == NULL ) return NULL;
@@ -106,7 +106,7 @@
    return string;
 }
 
-char* asciiToString( char *string )
+static char* asciiToString( char *string )
 {
    char* pch = string;
    if( string == NULL ) return NULL;
@@ -120,7 +120,7 @@
    return string;
 }
 
-char * asciiToStringOfLength( char * pString, int iLength)
+static char * asciiToStringOfLength( char * pString, int iLength)
 {
    char *	pch = pString;
 

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp Thu Dec 29 15:17:18 2005
@@ -23,7 +23,7 @@
 #define WSDL_DEFAULT_ENDPOINT "http://localhost:9080/ComplexTypeAll/services/Service"
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 // Prototype
 bool parse_args_for_endpoint(int *argc, char *argv[], char **endpoint);

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllComplexChildClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllComplexChildClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllComplexChildClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllComplexChildClient.cpp Thu Dec 29 15:17:18 2005
@@ -23,7 +23,7 @@
 #define WSDL_DEFAULT_ENDPOINT "http://localhost:9080/ComplexTypeAll/services/Service"
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 // Prototype
 bool parse_args_for_endpoint(int *argc, char *argv[], char **endpoint);

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ManyTypeRefRootClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ManyTypeRefRootClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ManyTypeRefRootClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ManyTypeRefRootClient.cpp Thu Dec 29 15:17:18 2005
@@ -21,7 +21,7 @@
 #define WSDL_DEFAULT_ENDPOINT "http://localhost:9080/ManyTypeRefRoot/services/sampleWS"
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 // Prototype
 bool parse_args_for_endpoint(int *argc, char *argv[], char **endpoint);

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp Thu Dec 29 15:17:18 2005
@@ -21,7 +21,7 @@
 #define WSDL_DEFAULT_ENDPOINT "http://localhost:9080/RecurseTypes/services/sampleWS"
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 // Prototype
 bool parse_args_for_endpoint(int *argc, char *argv[], char **endpoint);

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SimpleTypeArrayClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SimpleTypeArrayClient.cpp?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SimpleTypeArrayClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SimpleTypeArrayClient.cpp Thu Dec 29 15:17:18 2005
@@ -26,7 +26,7 @@
 void setLogOptions(const char *output_filename);
 
 // If we re-direct cout it will be to this ofstream
-ofstream output_file;
+static ofstream output_file;
 
 int main(int argc, char* argv[])
 {

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/tests/CalculatorDocMany.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/tests/CalculatorDocMany.xml?rev=359924&r1=359923&r2=359924&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/tests/CalculatorDocMany.xml (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/tests/CalculatorDocMany.xml Thu Dec 29 15:17:18 2005
@@ -12,5 +12,5 @@
 	<endpoint>http://localhost:80/axis/CalculatorDoc</endpoint>
 	<nomonitor>true</nomonitor>
 	<notrace>true</notrace>
-	<timeout>2400000</timeout>
+	<timeout>3200000</timeout>
 </test>