History log of /openbsd/regress/usr.bin/gzip/Makefile (Results 1 – 3 of 3)
Revision Date Author Comments
# eaf8e725 11-Nov-2023 gkoehler <gkoehler@openbsd.org>

Ignore -N in "gzip -dN <in.gz" and "zcat -N in.gz"

Have -c override -N, like other gzip implementations. Before, our -N
(decompress to stored name) overrode -c (cat to stdout) and crashed
with a pl

Ignore -N in "gzip -dN <in.gz" and "zcat -N in.gz"

Have -c override -N, like other gzip implementations. Before, our -N
(decompress to stored name) overrode -c (cat to stdout) and crashed
with a pledge violation, because the pledge for -c excludes wpath.

Guilherme Janczak reported the pledge violation in July 2022 and
provided a diff to prevent it, along with a regress test. I rewrote
the diff and expanded the regress.

ok kn@ millert@

show more ...


# 1a6707f7 22-Jun-2017 bluhm <bluhm@openbsd.org>

Convert shell script tests to regress make rules. Having only one
tool and more verbosity allows better debugging. Additional tests
check that gzip and gunzip preserve file permissions and ownershi

Convert shell script tests to regress make rules. Having only one
tool and more verbosity allows better debugging. Additional tests
check that gzip and gunzip preserve file permissions and ownership.

show more ...


# 92041e74 20-Aug-2008 mpf <mpf@openbsd.org>

Regression tests for gzip(1):
- Test if we detect truncated or corrupted files.
- Test basic functionality
OK millert@, markus@