From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#37426: guix-1.0.1-5.cc98b00 fails tests on i686-linux Date: Mon, 16 Sep 2019 23:06:14 +0200 Message-ID: <871rwg2bp5.fsf@gnu.org> References: <87ef0gfm1a.fsf@e6230.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:57847) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9yDA-0003fc-6U for bug-guix@gnu.org; Mon, 16 Sep 2019 17:07:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9yD8-0005Ko-Su for bug-guix@gnu.org; Mon, 16 Sep 2019 17:07:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42376) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i9yD8-0005Kg-Q3 for bug-guix@gnu.org; Mon, 16 Sep 2019 17:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i9yD8-0003QH-Io for bug-guix@gnu.org; Mon, 16 Sep 2019 17:07:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87ef0gfm1a.fsf@e6230.localdomain> (Mikhail Kryshen's message of "Mon, 16 Sep 2019 15:44:33 +0300") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Mikhail Kryshen Cc: 37426@debbugs.gnu.org, 37384@debbugs.gnu.org Hi Mikhail, Mikhail Kryshen skribis: > http://ci.guix.gnu.org/log/jkgrd9sv605jj3l819wp1jba99axfl0g-guix-1.0.1-5.= cc98b00 > > This breaks system configuration on i686 with current Guix. Thanks for the heads-up. The test failures are: --8<---------------cut here---------------start------------->8--- test-name: substitutable-path-info when substitutes are turned off location: /tmp/guix-build-guix-1.0.1-5.cc98b00.drv-0/source/tests/store.scm= :310 source: + (test-equal + "substitutable-path-info when substitutes are turned off" + '() + (with-store + s + (set-build-options s #:use-substitutes? #f) + (let* ((b (add-to-store + s + "bash" + #t + "sha256" + (search-bootstrap-binary + "bash" + (%current-system)))) + (d (derivation + s + "the-thing" + b + '("--version") + #:inputs + `((,b)))) + (o (derivation->output-path d))) + (with-derivation-narinfo + d + (substitutable-path-info s (list o)))))) expected-value: () actual-value: (#< path: "/tmp/guix-tests/store/k8yr3vwh9lry8= r5x53p1fcpk1d78v4y3-the-thing" deriver: "/tmp/guix-tests/store/1kklp6bxdl34= k0qxg4q4wxab7viyl00n-the-thing.drv" refs: () dl-size: 0 nar-size: 1234>) result: FAIL test-name: substitutable-paths when substitutes are turned off location: /tmp/guix-build-guix-1.0.1-5.cc98b00.drv-0/source/tests/store.scm= :323 source: + (test-equal + "substitutable-paths when substitutes are turned off" + '() + (with-store + s + (set-build-options s #:use-substitutes? #f) + (let* ((b (add-to-store + s + "bash" + #t + "sha256" + (search-bootstrap-binary + "bash" + (%current-system)))) + (d (derivation + s + "the-thing" + b + '("--version") + #:inputs + `((,b)))) + warning: in 'the-thing': deprecated 'derivation' calling conve= ntion used warning: in 'the-thing': deprecated 'derivation' calling convention used substitute: warning: authentication and authorization of substitutes disabl= ed! substitute: guix substitute: warning: ACL for archive imports seems to be u= ninitialized, substitutes may be unavailable warning: in 'the-thing': deprecated 'derivation' calling convention used warning: in 'the-thing': deprecated 'derivation' calling convention used warning: in 'the-thing': deprecated 'derivation' calling convention used warning: in 'the-thing': deprecated 'derivation' calling convention used substitute: warning: authentication and authorization of substitutes disabl= ed! substitute: guix substitute: warning: ACL for archive imports seems to be u= ninitialized, substitutes may be unavailable @ build-started /tmp/guix-tests/store/fh0yssxmiv089bpylfl4v5z4qqq89p56-the-= thing.drv - i686-linux /tmp/guix-tests/var/log/guix/drvs/fh//0yssxmiv089bpy= lfl4v5z4qqq89p56-the-thing.drv.bz2 31208 @ build-succeeded /tmp/guix-tests/store/fh0yssxmiv089bpylfl4v5z4qqq89p56-th= e-thing.drv - (o (derivation->output-path d))) + (with-derivation-narinfo + d + (substitutable-paths s (list o)))))) expected-value: () actual-value: ("/tmp/guix-tests/store/k8yr3vwh9lry8r5x53p1fcpk1d78v4y3-the-= thing") result: FAIL --8<---------------cut here---------------end--------------->8--- This may well be due to . When Timothy pushes the fix, I=E2=80=99ll update the =E2=80=98guix=E2=80=99= package and check whether it builds on i686-linux. Ludo=E2=80=99.