Lines Matching full:gz
9 # files without the .gz suffix.
10 echo -n "foo " | gzip > f1.gz
11 echo "bar" | gzip > f2.gz
12 testing "with input files" "gunzip f1.gz f2.gz &&
13 ! test -f f1.gz && ! test -f f2.gz &&
16 rm -f f1 f2 f1.gz f2.gz
19 echo "hello world" | gzip > f.gz
20 testing "no files (stdin to stdout)" "cat f.gz | gunzip > f &&
21 test -f f.gz && cat f" "hello world\n" "" ""
22 rm -f f f.gz
25 echo "1f8b08040000000000ff04000000ffff4bcbcfe70200a865327e04000000" | xxd -r -p > f1.gz
26 testing "FEXTRA flag skipped properly" "gunzip f1.gz &&
27 ! test -f f1.gz && test -f f1 &&
29 rm -f f1 f1.gz
32 echo -n "foo " | gzip > f1.gz
33 echo "bar" | gzip > f2.gz
34 testing "with input files and -c" "gunzip -c f1.gz f2.gz > out &&
35 test -f f1.gz && test -f f2.gz &&
38 rm -f f1.gz f2.gz out
43 echo "hello world" | gzip > f1.gz
44 testing "-k" "gunzip -k f1.gz && cat f1 && zcat f1.gz" \
46 rm -f f1 f1.gz
50 echo "hello world" | gzip > f1.gz
51 chmod 0411 f1.gz
52 touch -a -t 197801020304 f1.gz
53 touch -m -t 198704030201 f1.gz
55 "gunzip -k f1.gz && stat -c '%a %X %Y' f1 && stat -c '%a %Y' f1.gz" \
57 rm -f f1 f1.gz