From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: bug#37748: 'guix' fails tests on non-x86_64 systems Date: Mon, 14 Oct 2019 18:30:51 +0200 Message-ID: <87y2xn1e84.fsf@devup.no> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:41324) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iK3FQ-0004HL-B8 for bug-guix@gnu.org; Mon, 14 Oct 2019 12:31:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iK3FP-00018j-2W for bug-guix@gnu.org; Mon, 14 Oct 2019 12:31:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60998) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iK3FO-00018d-VM for bug-guix@gnu.org; Mon, 14 Oct 2019 12:31:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iK3FO-0001qc-RL for bug-guix@gnu.org; Mon, 14 Oct 2019 12:31:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41286) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iK3FJ-000485-H8 for bug-guix@gnu.org; Mon, 14 Oct 2019 12:30:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iK3FH-00014w-Vb for bug-guix@gnu.org; Mon, 14 Oct 2019 12:30:57 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:40461) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iK3FH-00013e-MF for bug-guix@gnu.org; Mon, 14 Oct 2019 12:30:55 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id E330F2210C for ; Mon, 14 Oct 2019 12:30:53 -0400 (EDT) Received: from localhost (ti0006q161-0149.bb.online.no [62.16.192.150]) by mail.messagingengine.com (Postfix) with ESMTPA id 5D3778005A for ; Mon, 14 Oct 2019 12:30:53 -0400 (EDT) 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: 37748@debbugs.gnu.org Hello, The 'guix' package fails a single test on all architectures except x86_64: https://ci.guix.gnu.org/search?query=guix-1.0.1-7+spec%3Aguix-master Here is a more stable URL with a log file: https://ci.guix.gnu.org/build/1823863/details Test output: test-name: fold-available-packages with/without cache location: /tmp/guix-build-guix-1.0.1-7.fc1fe72.drv-0/source/tests/packages.scm:1110 source: + (test-assert + "fold-available-packages with/without cache" + (let () + (define no-cache + (fold-available-packages + (lambda* (name version result #:rest rest) + (cons (cons* name version rest) result)) + '())) + (define from-cache + (call-with-temporary-directory + (lambda (cache) + (generate-package-cache cache) + (mock ((guix describe) current-profile (const cache)) + (mock ((gnu packages) + cache-is-authoritative? + (const #t)) + (fold-available-packages + (lambda* (name version result #:rest rest) + (cons (cons* name version rest) result)) + '())))))) + (and (equal? + (delete-duplicates from-cache) + from-cache) + (lset= equal? no-cache from-cache)))) actual-value: #f result: FAIL