Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 19877 invoked from network); 11 Jan 2010 17:07:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Jan 2010 17:07:02 -0000 Received: (qmail 85862 invoked by uid 500); 11 Jan 2010 17:07:02 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 85779 invoked by uid 500); 11 Jan 2010 17:07:02 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 85770 invoked by uid 99); 11 Jan 2010 17:07:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jan 2010 17:07:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jan 2010 17:07:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 87D6123889B1; Mon, 11 Jan 2010 17:06:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r897947 - in /cxf/branches/2.2.x-fixes: ./ systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java Date: Mon, 11 Jan 2010 17:06:39 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100111170639.87D6123889B1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Jan 11 17:06:39 2010 New Revision: 897947 URL: http://svn.apache.org/viewvc?rev=897947&view=rev Log: Merged revisions 897329 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r897329 | dkulp | 2010-01-08 16:42:36 -0500 (Fri, 08 Jan 2010) | 1 line Add a string to try and diagnose failures on hudson ........ Modified: cxf/branches/2.2.x-fixes/ (props changed) cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java Propchange: cxf/branches/2.2.x-fixes/ ('svn:mergeinfo' removed) Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java?rev=897947&r1=897946&r2=897947&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java (original) +++ cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addr_wsdl/WSAPureWsdlTest.java Mon Jan 11 17:06:39 2010 @@ -93,7 +93,7 @@ try { resp.get(); } catch (ExecutionException ex) { - assertTrue(ex.getCause() instanceof IOException); + assertTrue("Found " + ex.getCause().getClass(), ex.getCause() instanceof IOException); Client c = ClientProxy.getClient(port); for (Interceptor m : c.getOutInterceptors()) { if (m instanceof MAPCodec) {