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 pr...@apache.org on 2005/03/21 17:30:48 UTC

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

prestonf    2005/03/21 08:30:48

  Modified:    c/tests/auto_build/testcases/client/cpp
                        FaultMappingDocClient.cpp
  Log:
  Hi,
  Changed code so that the expected result comment only appears once.
  
  Revision  Changes    Path
  1.14      +2 -1      ws-axis/c/tests/auto_build/testcases/client/cpp/FaultMappingDocClient.cpp
  
  Index: FaultMappingDocClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/FaultMappingDocClient.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- FaultMappingDocClient.cpp	18 Mar 2005 20:07:40 -0000	1.13
  +++ FaultMappingDocClient.cpp	21 Mar 2005 16:30:48 -0000	1.14
  @@ -53,7 +53,8 @@
   			try
   			{
   				MathOps ws(endpoint);
  -				cout << "Trying to " << op << " " << i1 << " by " << i2 << endl;
  +				if( iRetryIterationCount == 3)
  +					cout << "Trying to " << op << " " << i1 << " by " << i2 << endl;
   				iResult = ws.div(i1, i2);		
   				cout << "Result is " << iResult << endl;
   				bSuccess = true;