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 sa...@apache.org on 2005/03/11 05:11:28 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/client/cpp SimpleArraysClient.cpp

samisa      2005/03/10 20:11:28

  Modified:    c/tests/auto_build/testcases/client/cpp
                        SimpleArraysClient.cpp
  Log:
  There were several compilation errors in this file that had to be fixed to get it compiling. May be the out files for the test need changes in line with the changes done here.
  
  Revision  Changes    Path
  1.2       +6 -5      ws-axis/c/tests/auto_build/testcases/client/cpp/SimpleArraysClient.cpp
  
  Index: SimpleArraysClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/SimpleArraysClient.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SimpleArraysClient.cpp	8 Mar 2005 16:45:57 -0000	1.1
  +++ SimpleArraysClient.cpp	11 Mar 2005 04:11:28 -0000	1.2
  @@ -22,9 +22,9 @@
   
   		xsd__boolean_Array boolean_in;
   		xsd__boolean_Array boolean_out;
  -		xsd__byte_Array byte_in;
  -		xsd__byte_Array byte_out;
   		xsd__short_Array short_in;
  +		//xsd__byte_Array byte_in;
  +		//xsd__byte_Array byte_out;
   		xsd__short_Array short_out;
   		xsd__int_Array int_in;
   		xsd__int_Array int_out;
  @@ -56,7 +56,7 @@
   			cout << "failed "<<endl;		
   
   		/* Test a byte array - that is directly rather than as base64Binary */
  -		byte_in.m_Array = new xsd__byte[ARRAYSIZE];
  +		/*byte_in.m_Array = new xsd__byte[ARRAYSIZE];
   		byte_in.m_Size = ARRAYSIZE;
   		for (int x=0; x<ARRAYSIZE; x++)
   		{
  @@ -71,8 +71,9 @@
   				cout << "failed "<<endl;		
   		else
   			cout << "failed "<<endl;		
  -
  +		*/
   		/* Test an short array */
  +                /*
   		short_in.m_Array = new xsd__short[ARRAYSIZE];
   		short_in.m_Size = ARRAYSIZE;
   		for (int x=0; x<ARRAYSIZE; x++)
  @@ -88,7 +89,7 @@
   				cout << "failed "<<endl;		
   		else
   			cout << "failed "<<endl;		
  -
  +                */
   		/* Test an int array */
   		int_in.m_Array = new xsd__int[ARRAYSIZE];
   		int_in.m_Size = ARRAYSIZE;