[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/18: tests: pack: Fix %gzip-compressor and a failing test.
From: |
guix-commits |
Subject: |
18/18: tests: pack: Fix %gzip-compressor and a failing test. |
Date: |
Wed, 10 Mar 2021 10:25:08 -0500 (EST) |
efraim pushed a commit to branch wip-ppc64le-for-master
in repository guix.
commit 8f52ea2d2bbd58c6f23af338f109b8ba3a4b4e86
Author: Chris Marusich <cmmarusich@gmail.com>
AuthorDate: Wed Feb 24 00:57:09 2021 -0800
tests: pack: Fix %gzip-compressor and a failing test.
* tests/pack.scm (%gzip-compressor): Fix the compressor's G-Expression by
adding the symbol "list" as the first element of the gexp'd list.
Previously,
%gzip-compressor caused the "self-contained-tarball" test to fail because it
would cause the builder to incorrectly attempt to apply a string like
"test-tmp/store/qgfnpsjc8q40fw5jyfxi4hjrppspvs4z-bootstrap-binaries-0/bin/gzip"
as if it were a procedure. This test code regression was likely introduced
accidentally in commit 5a0997ef7f3968d216328b8c63a6e36dd29a5ab8 ("packages,
scripts, utils: Enable multi-threaded xz compression.").
---
tests/pack.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/pack.scm b/tests/pack.scm
index e8455b4..20dd922 100644
--- a/tests/pack.scm
+++ b/tests/pack.scm
@@ -52,7 +52,7 @@
;; Compressor that uses the bootstrap 'gzip'.
((@ (guix scripts pack) compressor) "gzip"
"gz"
- #~(#+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n")))
+ #~(list #+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n")))
(define %tar-bootstrap %bootstrap-coreutils&co)
- 01/18: gnu: bootstrap: Add support for powerpc64le-linux., (continued)
- 01/18: gnu: bootstrap: Add support for powerpc64le-linux., guix-commits, 2021/03/10
- 02/18: utils: Add target-powerpc? procedure., guix-commits, 2021/03/10
- 04/18: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/10
- 05/18: gnu: gcc-boot0: Enable 128-bit long double for POWER9., guix-commits, 2021/03/10
- 08/18: gnu: bdb-4.8: Fix configure on powerpc64le-linux., guix-commits, 2021/03/10
- 13/18: Add powerpc64le-linux as a supported Guix architecture., guix-commits, 2021/03/10
- 09/18: gnu: guile-avahi: Fix compilation on powerpc64le-linux., guix-commits, 2021/03/10
- 14/18: syscalls: Fix clone on powerpc64le-linux., guix-commits, 2021/03/10
- 07/18: gnu: binutils-final: Support more Power architectures., guix-commits, 2021/03/10
- 11/18: gnu: texlive-latex-base: Fix compilation on powerpc64le*., guix-commits, 2021/03/10
- 18/18: tests: pack: Fix %gzip-compressor and a failing test.,
guix-commits <=
- 10/18: gnu: texlive-bin: Fix compilation on powerpc64le*., guix-commits, 2021/03/10
- 12/18: gnu: libelf: Fix compilation for powerpc64le-linux., guix-commits, 2021/03/10
- 15/18: syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux., guix-commits, 2021/03/10
- 06/18: gnu: binutils-final: Provide bash for binary on powerpc-linux., guix-commits, 2021/03/10
- 16/18: ci: %cross-targets: Add powerpc64le-linux-gnu., guix-commits, 2021/03/10
- 03/18: gnu: gcc-4.7: On powerpc64le, fix /lib64 references., guix-commits, 2021/03/10
- 17/18: utils: Fix target-64bit? on powerpc64le-linux., guix-commits, 2021/03/10