diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-06 20:01:11 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-06 20:01:11 +0100 |
commit | aef441cb4d567da5575c498141b21eb38dc3fdaf (patch) | |
tree | f99a2ebecd77c614f243c4df859ee40f7281f9bc /testsuite | |
parent | ca18e25525267736e7e919987c50569f27d70d36 (diff) | |
download | busybox-w32-aef441cb4d567da5575c498141b21eb38dc3fdaf.tar.gz busybox-w32-aef441cb4d567da5575c498141b21eb38dc3fdaf.tar.bz2 busybox-w32-aef441cb4d567da5575c498141b21eb38dc3fdaf.zip |
tar: fix a bug where autodetection messes up -z on extract
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/tar.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/tar.tests b/testsuite/tar.tests index f2f4e9348..824d6d54e 100755 --- a/testsuite/tar.tests +++ b/testsuite/tar.tests | |||
@@ -154,6 +154,20 @@ dr-xr-x--- input_dir | |||
154 | SKIP= | 154 | SKIP= |
155 | } | 155 | } |
156 | 156 | ||
157 | # Had a bug where on extrace autodetect first "switched off" -z | ||
158 | # and then failed to recognize .tgz extension | ||
159 | testing "tar extract tgz" "\ | ||
160 | dd count=1 bs=1M if=/dev/zero of=F0 2>/dev/null | ||
161 | tar -czf F0.tgz F0 | ||
162 | rm F0 | ||
163 | tar -xzvf F0.tgz && echo Ok | ||
164 | rm F0 || echo BAD | ||
165 | " "\ | ||
166 | F0 | ||
167 | Ok | ||
168 | " \ | ||
169 | "" "" | ||
170 | |||
157 | 171 | ||
158 | cd .. && rm -rf tar.tempdir || exit 1 | 172 | cd .. && rm -rf tar.tempdir || exit 1 |
159 | 173 | ||