aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-06-27 13:15:10 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-06-27 13:15:10 +0200
commit94593799f7deab90dae163f323f76ca1a987ab03 (patch)
tree8ac659cd29639f95cd2ac969c5099b904bec41c7
parentd8799b90f314469c10ada3008856cfdeb98b92f9 (diff)
downloadbusybox-w32-94593799f7deab90dae163f323f76ca1a987ab03.tar.gz
busybox-w32-94593799f7deab90dae163f323f76ca1a987ab03.tar.bz2
busybox-w32-94593799f7deab90dae163f323f76ca1a987ab03.zip
testsuite/bzcat.tests: fix false positive take 2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xtestsuite/bzcat.tests11
1 files changed, 6 insertions, 5 deletions
diff --git a/testsuite/bzcat.tests b/testsuite/bzcat.tests
index 8210d94d4..ad05dcb2c 100755
--- a/testsuite/bzcat.tests
+++ b/testsuite/bzcat.tests
@@ -30,10 +30,11 @@ hello_bz2() {
30 $ECHO -ne "\x17\x72\x45\x38\x50\x90\x5b\xb8\xe8\xa3" 30 $ECHO -ne "\x17\x72\x45\x38\x50\x90\x5b\xb8\xe8\xa3"
31} 31}
32 32
33test x"$CONFIG_ZCAT" = x"y" && \
33for ext in \ 34for ext in \
34 `test x"$CONFIG_GUNZIP:$CONFIG_FEATURE_SEAMLESS_GZ" = x"y:y" && echo gz` \ 35 `test x"$CONFIG_FEATURE_SEAMLESS_GZ" = x"y" && echo gz` \
35 `test x"$CONFIG_BUNZIP2:$CONFIG_FEATURE_SEAMLESS_BZ2" = x"y:y" && echo bz2` \ 36 `test x"$CONFIG_FEATURE_SEAMLESS_BZ2" = x"y" && echo bz2` \
36 `test x"$CONFIG_UNCOMPRESS:$CONFIG_FEATURE_SEAMLESS_Z" = x"y:y" && echo Z` 37 `test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && echo Z`
37do 38do
38 prep() { 39 prep() {
39 rm -f t1.$ext t2.$ext t_actual 40 rm -f t1.$ext t2.$ext t_actual
@@ -97,7 +98,7 @@ testing "bzcat can handle compressed zero-length bzip2 files" \
97## compress algorithm 98## compress algorithm
98 99
99# "input" file is compressed (.Z) file with "a\n" data 100# "input" file is compressed (.Z) file with "a\n" data
100test x"$CONFIG_UNCOMPRESS" = x"y" && \ 101test x"$CONFIG_ZCAT" = x"y" && \
101test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \ 102test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \
102testing "zcat can print many files" \ 103testing "zcat can print many files" \
103"zcat input input; echo \$?" \ 104"zcat input input; echo \$?" \
@@ -110,7 +111,7 @@ a
110" "" 111" ""
111 112
112# "input" file is compressed (.Z) zero byte file 113# "input" file is compressed (.Z) zero byte file
113test x"$CONFIG_UNCOMPRESS" = x"y" && \ 114test x"$CONFIG_ZCAT" = x"y" && \
114test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \ 115test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \
115testing "zcat can handle compressed zero-length (.Z) files" \ 116testing "zcat can handle compressed zero-length (.Z) files" \
116"zcat input input; echo \$?" \ 117"zcat input input; echo \$?" \