diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-09-11 00:28:50 -0700 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-09-12 16:19:33 +0200 |
commit | 80d80ba6dd9e91cca471ce767c8032a0f0db4244 (patch) | |
tree | 8cff82a3d5fe20d2d4ad05f5546f35643457e6c2 /testsuite | |
parent | 819cacfd4597038840454ee743380fd70f836271 (diff) | |
download | busybox-80d80ba6dd9e91cca471ce767c8032a0f0db4244.tar.gz |
Fixed a couple of failing tar tests
The tar symlinks mode test is fixed similarly to the hardlinks
test in 0d7cb4cc, and the read-only test is skipped by
SKIP_KNOWN_BUGS.
Signed-off-by: Dan Fandrich <dan@coneharvesters.com>
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/tar.tests | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testsuite/tar.tests b/testsuite/tar.tests index dd502c23d..f2f4e9348 100755 --- a/testsuite/tar.tests +++ b/testsuite/tar.tests @@ -91,15 +91,14 @@ mkdir input_dir ln input_file input_dir ln input_soft input_dir chmod 550 input_dir -tar cf test.tar input_* +tar cf test.tar input_dir/* input_[fs]* tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort chmod 770 input_dir rm -rf input_* tar xf test.tar 2>&1 echo Ok: $? -ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" +ls -l . input_dir/* | grep "input_[fs]" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" ' "\ -input_dir/ input_dir/input_file input_dir/input_soft -> input_file input_file -> input_dir/input_file @@ -107,7 +106,6 @@ input_soft -> input_dir/input_soft Ok: 0 -rwxr----x input_dir/input_file lrwxrwxrwx input_file -dr-xr-x--- input_dir -rwxr----x input_file lrwxrwxrwx input_file " \ @@ -129,6 +127,7 @@ Ok "Ok\n" "" SKIP= +test x"$SKIP_KNOWN_BUGS" = x"" && { # Needs to be run under non-root for meaningful test optional FEATURE_TAR_CREATE testing "tar writing into read-only dir" '\ @@ -153,6 +152,8 @@ dr-xr-x--- input_dir " \ "" "" SKIP= +} + cd .. && rm -rf tar.tempdir || exit 1 |