You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ha...@apache.org on 2005/02/01 14:30:53 UTC

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

hawkeye     2005/02/01 05:30:53

  Modified:    c/tests/auto_build/testcases/output RecurseTypes.cpp.out
                        ComplexTypeAll.cpp.out
               c/tests/auto_build/testcases/client/cpp
                        RecurseTypesClient.cpp ComplexTypeAllClient.cpp
  Log:
  Tests now have a end of test marker on cout. Also made tests that used printf no use cout
  
  Revision  Changes    Path
  1.2       +1 -0      ws-axis/c/tests/auto_build/testcases/output/RecurseTypes.cpp.out
  
  Index: RecurseTypes.cpp.out
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/RecurseTypes.cpp.out,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RecurseTypes.cpp.out	1 Oct 2004 20:04:00 -0000	1.1
  +++ RecurseTypes.cpp.out	1 Feb 2005 13:30:41 -0000	1.2
  @@ -11,3 +11,4 @@
   	Kind [7] = Sample
   	Kind [8] = Sample
   	Kind [9] = Sample
  +---------------------- TEST COMPLETE -----------------------------
  \ No newline at end of file
  
  
  
  1.2       +1 -0      ws-axis/c/tests/auto_build/testcases/output/ComplexTypeAll.cpp.out
  
  Index: ComplexTypeAll.cpp.out
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/ComplexTypeAll.cpp.out,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ComplexTypeAll.cpp.out	4 Oct 2004 17:54:45 -0000	1.1
  +++ ComplexTypeAll.cpp.out	1 Feb 2005 13:30:41 -0000	1.2
  @@ -1 +1,2 @@
   Result 1
  +---------------------- TEST COMPLETE -----------------------------
  
  
  
  1.7       +14 -0     ws-axis/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp
  
  Index: RecurseTypesClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/RecurseTypesClient.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- RecurseTypesClient.cpp	13 Jan 2005 09:00:43 -0000	1.6
  +++ RecurseTypesClient.cpp	1 Feb 2005 13:30:53 -0000	1.7
  @@ -72,6 +72,20 @@
       if(endpoint_set)
         free(endpoint);
     }
  +  try
  +  {
  +	  delete ws; 
  +  }
  +  catch(exception& exception)
  +  {
  +  	cout << "Exception on clean up of ws: " << exception.what()<<endl;
  +  }
  +  catch(...)
  +  {
  +  	cout << "Unknown exception on clean up of ws: " << endl;
  +  }
  +  cout << "---------------------- TEST COMPLETE -----------------------------"<< endl;
  +  
     return returnValue;
   }
   
  
  
  
  1.8       +13 -1     ws-axis/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp
  
  Index: ComplexTypeAllClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/ComplexTypeAllClient.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ComplexTypeAllClient.cpp	19 Jan 2005 12:00:39 -0000	1.7
  +++ ComplexTypeAllClient.cpp	1 Feb 2005 13:30:53 -0000	1.8
  @@ -52,7 +52,19 @@
     }
     
     // Samisa : clean up memory allocated for stub
  -  delete ws;
  +  try
  +  {
  +	  delete ws; 
  +  }
  +  catch(exception& exception)
  +  {
  +  	cout << "Exception on clean up of ws : " << exception.what()<<endl;
  +  }
  +  catch(...)
  +  {
  +  	cout << "Unknown exception on clean up of ws : " << endl;
  +  }
  +  cout << "---------------------- TEST COMPLETE -----------------------------"<< endl;
   
     return returnValue;
   }