From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZCmp-0008J1-Q9 for guix-patches@gnu.org; Wed, 10 Jan 2018 04:35:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZCmk-0000Qe-Sb for guix-patches@gnu.org; Wed, 10 Jan 2018 04:35:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42381) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eZCmk-0000QD-PF for guix-patches@gnu.org; Wed, 10 Jan 2018 04:35:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eZCmk-00078i-Gm for guix-patches@gnu.org; Wed, 10 Jan 2018 04:35:02 -0500 Subject: [bug#30062] [PATCH core-updates] gnu: java-ops4j-pax-tinybundles: Disable failing test. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZClg-0007pZ-Cu for guix-patches@gnu.org; Wed, 10 Jan 2018 04:33:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZClb-00071Z-HB for guix-patches@gnu.org; Wed, 10 Jan 2018 04:33:56 -0500 Received: from mail-wm0-x234.google.com ([2a00:1450:400c:c09::234]:36658) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eZClb-00070N-Ae for guix-patches@gnu.org; Wed, 10 Jan 2018 04:33:51 -0500 Received: by mail-wm0-x234.google.com with SMTP id b76so25905742wmg.1 for ; Wed, 10 Jan 2018 01:33:51 -0800 (PST) From: =?UTF-8?Q?G=C3=A1bor?= Boskovits Date: Wed, 10 Jan 2018 10:33:08 +0100 Message-Id: <20180110093308.5581-1-boskovits@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30062@debbugs.gnu.org Cc: =?UTF-8?Q?G=C3=A1bor?= Boskovits * gnu/packages/java.scm (java-ops4j-pax-tinybundles)[arguments]: Modify #:test-exclude to disable all bnd tests. The bnd testsuite hardcodes the version of bnd, making it impossible to update bnd independently. Disable it to avoid test failures on bnd updates. --- gnu/packages/java.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index e1e9093df..3e32eb882 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6054,7 +6054,8 @@ it manages project dependencies, gives diffs jars, and much more.") #:source-dir "src/main/java" #:test-exclude ;; Abstract base classes for other tests - (list "**/BndTest.java" "**/CoreTest.java") + ;; Disable bnd tests, they hardcode the version of bnd. + (list "**/Bnd*Test.java" "**/CoreTest.java") #:phases (modify-phases %standard-phases (add-before 'check 'fix-version -- 2.15.1