Lines Matching refs:gzip
2 # Ensure that gzip -cdf handles mixed compressed/not-compressed data
3 # Before gzip-1.5, it would produce invalid output.
29 gzip -cdf < in > out || fail=1
34 # (echo xxx; echo yyy|gzip) > in || fail=1
35 # gzip -cdf < in > out || fail=1
39 (echo xxx|gzip; echo yyy) > in || fail=1
40 gzip -cdf < in > out || fail=1
43 (echo xxx|gzip; echo yyy|gzip) > in || fail=1
44 gzip -cdf < in > out || fail=1
53 # gzip's internal buffer size is 32KiB + 64 bytes:
59 # Ensure that "gzip -cdf" acts like cat, for a range of small input files.
64 gzip -cdf < in > out