[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/23: tests: pack: Fix %gzip-compressor and a failing test.
From: |
guix-commits |
Subject: |
19/23: tests: pack: Fix %gzip-compressor and a failing test. |
Date: |
Thu, 11 Mar 2021 02:05:06 -0500 (EST) |
marusich pushed a commit to branch wip-ppc64le
in repository guix.
commit e5fec0cdaea952c45f94d2c2503bdc5119bdfe92
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)
- 09/23: gnu: guile-avahi: Fix compilation on powerpc64le-linux., (continued)
- 09/23: gnu: guile-avahi: Fix compilation on powerpc64le-linux., guix-commits, 2021/03/11
- 01/23: gnu: bootstrap: Add support for powerpc64le-linux., guix-commits, 2021/03/11
- 10/23: gnu: texlive-bin: Fix compilation on powerpc64le*., guix-commits, 2021/03/11
- 12/23: gnu: libelf: Fix compilation for powerpc64le-linux., guix-commits, 2021/03/11
- 14/23: syscalls: Fix clone on powerpc64le-linux., guix-commits, 2021/03/11
- 03/23: utils: Add target-powerpc? procedure., guix-commits, 2021/03/11
- 07/23: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/11
- 05/23: gnu: binutils-final: Support more Power architectures., guix-commits, 2021/03/11
- 04/23: gnu: binutils-final: Provide bash for binary on powerpc-linux., guix-commits, 2021/03/11
- 11/23: gnu: texlive-latex-base: Fix compilation on powerpc64le*., guix-commits, 2021/03/11
- 19/23: tests: pack: Fix %gzip-compressor and a failing test.,
guix-commits <=
- 16/23: ci: %cross-targets: Add powerpc64le-linux-gnu., guix-commits, 2021/03/11
- 23/23: tests: guix-environment.sh: Use C_INCLUDE_PATH, not CPATH., guix-commits, 2021/03/11
- 17/23: utils: Fix target-64bit? on powerpc64le-linux., guix-commits, 2021/03/11
- 21/23: gnu: gcc: Set gcc-8 as default., guix-commits, 2021/03/11
- 13/23: Add powerpc64le-linux as a supported Guix architecture., guix-commits, 2021/03/11
- 18/23: tests: gremlin: Skip file-needed/recursive if DT_NEEDED is empty., guix-commits, 2021/03/11
- 15/23: syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux., guix-commits, 2021/03/11
- 22/23: gnu: openjpeg: Disable failing tests group., guix-commits, 2021/03/11
- 20/23: gnu: commencement: Fix findutils-boot0 on some systems., guix-commits, 2021/03/11
- 08/23: gnu: bdb-4.8: Fix configure on powerpc64le-linux., guix-commits, 2021/03/11