Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BB0CF92D9 for ; Thu, 20 Oct 2011 01:11:20 +0000 (UTC) Received: (qmail 96837 invoked by uid 500); 20 Oct 2011 01:11:20 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 96770 invoked by uid 500); 20 Oct 2011 01:11:20 -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 96762 invoked by uid 99); 20 Oct 2011 01:11:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Oct 2011 01:11:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Thu, 20 Oct 2011 01:11:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3371D2388A33 for ; Thu, 20 Oct 2011 01:10:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1186592 - in /cxf/branches/2.4.x-fixes: ./ systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java Date: Thu, 20 Oct 2011 01:10:59 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111020011059.3371D2388A33@eris.apache.org> Author: dkulp Date: Thu Oct 20 01:10:58 2011 New Revision: 1186592 URL: http://svn.apache.org/viewvc?rev=1186592&view=rev Log: Merged revisions 1186487 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1186487 | dkulp | 2011-10-19 16:58:03 -0400 (Wed, 19 Oct 2011) | 1 line Cleanup a test that keeps randomly failing for me ........ Modified: cxf/branches/2.4.x-fixes/ (props changed) cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java Propchange: cxf/branches/2.4.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java?rev=1186592&r1=1186591&r2=1186592&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java (original) +++ cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTest.java Thu Oct 20 01:10:58 2011 @@ -19,14 +19,10 @@ package org.apache.cxf.systest.ws.addressing; -import java.lang.reflect.UndeclaredThrowableException; - import javax.jws.WebService; -import org.apache.hello_world_soap_http.BadRecordLitFault; import org.junit.BeforeClass; -import org.junit.Test; /** @@ -69,29 +65,5 @@ public class MAPTest extends MAPTestBase public static class GreeterImpl extends org.apache.cxf.systest.ws.addressing.AbstractGreeterImpl { } - - @Test - public void testUsingKeepAliveConnection() throws Exception { - if (!"HP-UX".equals(System.getProperty("os.name"))) { - return; - } - int n = 100; - for (int i = 0; i < n; i++) { - greeter.greetMeOneWay("oneway on keep-alive connection"); - } - for (int i = 0; i < n; i++) { - assertNotNull(greeter.greetMe("twoway on keep-alive connection")); - } - for (int i = 0; i < 0; i++) { - try { - greeter.testDocLitFault("BadRecordLitFault"); - fail("expected fault from service"); - } catch (BadRecordLitFault brlf) { - //checkVerification(); - } catch (UndeclaredThrowableException ex) { - throw (Exception)ex.getCause(); - } - } - } } Modified: cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java?rev=1186592&r1=1186591&r2=1186592&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java (original) +++ cxf/branches/2.4.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/addressing/MAPTestBase.java Thu Oct 20 01:10:58 2011 @@ -186,8 +186,6 @@ public abstract class MAPTestBase extend } @Test - //@org.junit.Ignore("randomly fails quite often, but not in the " - // + " debugger so not sure what is going on yet") public void testExplicitMAPs() throws Exception { try { String msgId = "urn:uuid:12345-" + Math.random(); @@ -259,7 +257,6 @@ public abstract class MAPTestBase extend @Test - //@org.junit.Ignore("Random failure on Linux") public void testApplicationFault() throws Exception { try { greeter.testDocLitFault("BadRecordLitFault");