From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZDis-0004Wy-0W for guix-patches@gnu.org; Wed, 10 Jan 2018 05:35:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZDin-00081c-Ur for guix-patches@gnu.org; Wed, 10 Jan 2018 05:35:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eZDin-00081V-RF for guix-patches@gnu.org; Wed, 10 Jan 2018 05:35:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eZDin-0000Am-KM for guix-patches@gnu.org; Wed, 10 Jan 2018 05:35:01 -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]:47305) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZDhn-000475-6t for guix-patches@gnu.org; Wed, 10 Jan 2018 05:34:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZDhj-0007K8-5k for guix-patches@gnu.org; Wed, 10 Jan 2018 05:33:59 -0500 Received: from lepiller.eu ([89.234.186.109]:40932) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eZDhi-0007IY-Su for guix-patches@gnu.org; Wed, 10 Jan 2018 05:33:55 -0500 Received: from webmail.lepiller.eu (static-176-182-42-79.ncc.abo.bbox.fr [176.182.42.79]) by lepiller.eu (OpenSMTPD) with ESMTPSA id 807d56a7 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Wed, 10 Jan 2018 10:33:53 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Wed, 10 Jan 2018 11:33:48 +0100 From: julien lepiller In-Reply-To: <20180110093308.5581-1-boskovits@gmail.com> References: <20180110093308.5581-1-boskovits@gmail.com> Message-ID: <7645e6285dffa5c28d8e90b487ab336e@lepiller.eu> 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 Le 2018-01-10 10:33, Gábor Boskovits a écrit : > * 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 Couldn't we use substitute* to replace the hardcoded version with our own version of bnd?