You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/08/19 04:02:38 UTC

svn commit: r1159476 - in /cxf/branches/2.4.x-fixes: ./ systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java

Author: dkulp
Date: Fri Aug 19 02:02:38 2011
New Revision: 1159476

URL: http://svn.apache.org/viewvc?rev=1159476&view=rev
Log:
Merged revisions 1157850 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1157850 | dkulp | 2011-08-15 10:02:40 -0400 (Mon, 15 Aug 2011) | 1 line
  
  Remove stack traces on console
........

Modified:
    cxf/branches/2.4.x-fixes/   (props changed)
    cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java

Propchange: cxf/branches/2.4.x-fixes/
            ('svn:mergeinfo' removed)

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java?rev=1159476&r1=1159475&r2=1159476&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java (original)
+++ cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soapfault/details/Soap11ClientServerTest.java Fri Aug 19 02:02:38 2011
@@ -41,7 +41,7 @@ public class Soap11ClientServerTest exte
     @BeforeClass
     public static void startServers() throws Exception {
         assertTrue("server did not launch correctly",
-                   launchServer(Server11.class, true));
+                   launchServer(Server11.class, false));
     }
     
     @Test
@@ -55,7 +55,7 @@ public class Soap11ClientServerTest exte
             StackTraceElement[] elements = ex.getCause().getStackTrace();
             assertEquals("org.apache.cxf.systest.soapfault.details.GreeterImpl11", 
                          elements[0].getClassName());
-            ex.printStackTrace();
+            //ex.printStackTrace();
             boolean findNPE = false;
             for (StackTraceElement element : elements) {
                 if (element.getClassName().indexOf("java.lang.NullPointerException") > 0) {