From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#18935: gexp->derivation test failure Date: Mon, 03 Nov 2014 10:51:50 -0500 Message-ID: <87h9yg704p.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlJwO-0007vu-Ik for bug-guix@gnu.org; Mon, 03 Nov 2014 10:53:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XlJwE-0007Zf-Nb for bug-guix@gnu.org; Mon, 03 Nov 2014 10:53:12 -0500 Received: from debbugs.gnu.org ([140.186.70.43]:50503) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlJwE-0007ZV-Ky for bug-guix@gnu.org; Mon, 03 Nov 2014 10:53:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1XlJwE-0002fd-DJ for bug-guix@gnu.org; Mon, 03 Nov 2014 10:53:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40728) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlJvW-0007bv-Ui for bug-guix@gnu.org; Mon, 03 Nov 2014 10:52:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XlJvP-0007NU-EP for bug-guix@gnu.org; Mon, 03 Nov 2014 10:52:18 -0500 Received: from world.peace.net ([96.39.62.75]:33367) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlJvP-0007MT-BN for bug-guix@gnu.org; Mon, 03 Nov 2014 10:52:11 -0500 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-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: 18935@debbugs.gnu.org On my i686 standalone Guix system, using Guix v0.7-642-g3b50925 to build its 'guix' package (0.7.14e84b2) fails, due to a failed test. Here's the relevant section from gexp.log: --8<---------------cut here---------------start------------->8--- Test begin: test-name: "gexp->derivation" source-file: "tests/gexp.scm" source-line: 227 source-form: (test-assert "gexp->derivation" (run-with-store %store (mlet* %store-monad ((file (text-file "foo" "Hello, world!")) (exp -> (gexp (begin (mkdir (ungexp output)) (chdir (ungexp output)) (symlink (string-append (ungexp %bootstrap-guile) "/bin/guile") "foo") (symlink (ungexp file) (ungexp output "2nd"))))) (drv (gexp->derivation "foo" exp)) (out -> (derivation->output-path drv)) (out2 -> (derivation->output-path drv "2nd")) (done (built-derivations (list drv))) (refs ((store-lift references) out)) (refs2 ((store-lift references) out2)) (guile (package-file %bootstrap-guile "bin/guile"))) (return (and (string=? (readlink (string-append out "/foo")) guile) (string=? (readlink out2) file) (equal? refs (list (dirname (dirname guile)))) (equal? refs2 (list file))))) #:guile-for-bui ld (%guile-for-build))) Test end: result-kind: fail actual-value: #f actual-error: (srfi-34 #) --8<---------------cut here---------------end--------------->8--- The 'guix-daemon' used to do this failed build is also 0.7.14e84b2. The 'guix' used to do this failed build was v0.7-642-g3b50925 plus one local patch that adds "--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt" to the GnuTLS configure flags. Mark