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 407DAD65C for ; Wed, 21 Nov 2012 14:11:22 +0000 (UTC) Received: (qmail 93512 invoked by uid 500); 21 Nov 2012 14:11:22 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 93277 invoked by uid 500); 21 Nov 2012 14:11:21 -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 93259 invoked by uid 99); 21 Nov 2012 14:11:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Nov 2012 14:11:21 +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; Wed, 21 Nov 2012 14:10:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D12542388A3F; Wed, 21 Nov 2012 14:10:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1412116 - /cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java Date: Wed, 21 Nov 2012 14:10:15 -0000 To: commits@cxf.apache.org From: coheigea@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121121141015.D12542388A3F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: coheigea Date: Wed Nov 21 14:10:15 2012 New Revision: 1412116 URL: http://svn.apache.org/viewvc?rev=1412116&view=rev Log: Merged revisions 1412113 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes ........ r1412113 | coheigea | 2012-11-21 14:09:02 +0000 (Wed, 21 Nov 2012) | 10 lines Merged revisions 1412109 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1412109 | coheigea | 2012-11-21 14:04:20 +0000 (Wed, 21 Nov 2012) | 2 lines Updated disabled tests with a bit more info on the cause ........ ........ Modified: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java Modified: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java?rev=1412116&r1=1412115&r2=1412116&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java (original) +++ cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java Wed Nov 21 14:10:15 2012 @@ -64,6 +64,9 @@ public class GCMTest extends AbstractBus public void testAESGCM128() throws Exception { // // This test fails with the IBM JDK 7 + // IBM JDK 7 appears to require a GCMParameter class to be used, which + // only exists in JDK 7. The Sun JDK appears to be more lenient and + // allows us to use the existing IVParameterSpec class. // if ("IBM Corporation".equals(System.getProperty("java.vendor")) && System.getProperty("java.version") != null @@ -98,6 +101,9 @@ public class GCMTest extends AbstractBus // // This test fails with the IBM JDK 7 + // IBM JDK 7 appears to require a GCMParameter class to be used, which + // only exists in JDK 7. The Sun JDK appears to be more lenient and + // allows us to use the existing IVParameterSpec class. // if ("IBM Corporation".equals(System.getProperty("java.vendor")) && System.getProperty("java.version") != null @@ -132,6 +138,9 @@ public class GCMTest extends AbstractBus // // This test fails with the IBM JDK 7 + // IBM JDK 7 appears to require a GCMParameter class to be used, which + // only exists in JDK 7. The Sun JDK appears to be more lenient and + // allows us to use the existing IVParameterSpec class. // if ("IBM Corporation".equals(System.getProperty("java.vendor")) && System.getProperty("java.version") != null