Thanks for that old bug report. We fixed it soon after you reported it, here:

https://git.savannah.gnu.org/cgit/gzip.git/commit/?id=63aa2268a5abfed0116d04bbe3952e4a753af91d

but didn't make the connection between the fix and the bug report. So I'll close the bug report now.

By the way, I just now tried bleeding-edge gzip on macOS 12.1 (Apple M1) and found one portability glitch, which I fixed by installing the attached into gzip.
From 2532f0a0d464fa1d0845a74789cb6859e4086021 Mon Sep 17 00:00:00 2001
From: Paul Eggert <egg...@cs.ucla.edu>
Date: Thu, 31 Mar 2022 17:15:17 -0700
Subject: [PATCH] tests: port list-big test to macOS 12.1

* tests/list-big: Use dd, not truncate, to create a big file.
---
 tests/list-big | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/list-big b/tests/list-big
index a0aeb75..10cb7c7 100755
--- a/tests/list-big
+++ b/tests/list-big
@@ -19,7 +19,7 @@
 
 . "${srcdir=.}/init.sh"; path_prepend_ ..
 
-truncate --size 4G big || framework_failure_
+dd bs=65536 seek=65536 if=/dev/null of=big || framework_failure_
 
 gzip -1 big || fail=1
 gzip -l big.gz >out || fail=1
-- 
2.32.0

Reply via email to