From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#40650: guix test suite failures building Debian package Date: Sat, 18 Apr 2020 22:00:37 +0200 Message-ID: <877dyc5ztm.fsf@gnu.org> References: <87pnc8wgnq.fsf@yucca> <87d087kem6.fsf@gnu.org> <87o8rr1h02.fsf@ponder> <87mu7abinc.fsf@gnu.org> <87sgh14v6y.fsf@yucca> 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]:45318) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPteB-0002nq-7S for bug-guix@gnu.org; Sat, 18 Apr 2020 16:01:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jPteA-0005fY-Rf for bug-guix@gnu.org; Sat, 18 Apr 2020 16:01:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60306) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jPteA-0005f9-Be for bug-guix@gnu.org; Sat, 18 Apr 2020 16:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jPteA-0002jp-8w for bug-guix@gnu.org; Sat, 18 Apr 2020 16:01:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87sgh14v6y.fsf@yucca> (Vagrant Cascadian's message of "Fri, 17 Apr 2020 15:13:41 -0700") 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-mx.org@gnu.org Sender: "bug-Guix" To: Vagrant Cascadian Cc: 40650@debbugs.gnu.org Vagrant Cascadian skribis: > test-name: gexp->derivation #:references-graphs > location: /build/guix-YPdZIs/guix-1.1.0/tests/gexp.scm:944 [...] > actual-value: #f > result: FAIL This failure is because of this assumption in the test: ;; Note: %BOOTSTRAP-GUILE depends on the bootstrap Bash. (lset=3D string=3D? (call-with-input-file g-guile read) (list (derivation->output-path guile-drv) bash)) This assumption does not hold if you use a =E2=80=98bash=E2=80=99 binary di= fferent from the one Guix provides; I had overlooked this. You can either solve this by pre-downloading Guix=E2=80=99 statically-linked {bash,mkdir,xz,tar} as discussed earlier, or simply by skipping this test by adding (test-skip 1) above it (it=E2=80=99s not unreasonable IMO). Ludo=E2=80=99.