Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id EAB26200C01 for ; Thu, 19 Jan 2017 09:01:51 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E9745160B54; Thu, 19 Jan 2017 08:01:51 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 48198160B5A for ; Thu, 19 Jan 2017 09:01:51 +0100 (CET) Received: (qmail 73386 invoked by uid 500); 19 Jan 2017 08:01:49 -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 72330 invoked by uid 99); 19 Jan 2017 08:01:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jan 2017 08:01:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 209B7F403E; Thu, 19 Jan 2017 08:01:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ffang@apache.org To: commits@cxf.apache.org Date: Thu, 19 Jan 2017 08:02:02 -0000 Message-Id: <2a15b40c82364287aa041c0ee3477c61@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [16/16] cxf git commit: [CXF-7215]diable CodeFirstTest#testCXF1510 with java9 archived-at: Thu, 19 Jan 2017 08:01:52 -0000 [CXF-7215]diable CodeFirstTest#testCXF1510 with java9 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/86251ae7 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/86251ae7 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/86251ae7 Branch: refs/heads/master Commit: 86251ae75e6a663d6419623f47e393dd7a042742 Parents: 0a305af Author: Freeman Fang Authored: Thu Jan 19 16:01:25 2017 +0800 Committer: Freeman Fang Committed: Thu Jan 19 16:01:25 2017 +0800 ---------------------------------------------------------------------- .../src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/86251ae7/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java ---------------------------------------------------------------------- diff --git a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java index 67cd875..d350e3e 100644 --- a/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java +++ b/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/CodeFirstTest.java @@ -72,7 +72,6 @@ import org.apache.cxf.transport.local.LocalTransportFactory; import org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean; import org.apache.cxf.wsdl11.ServiceWSDLBuilder; import org.apache.ws.commons.schema.constants.Constants; -import org.junit.Ignore; import org.junit.Test; @@ -463,8 +462,12 @@ public class CodeFirstTest extends AbstractJaxWsTest { } } - @Ignore + @Test public void testCXF1510() throws Exception { + if (System.getProperty("java.version").startsWith("9")) { + //can't pass with java9 so far + return; + } JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean(); factory.setServiceClass(NoRootBare.class); factory.setServiceBean(new NoRootBareImpl());