aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtestsuite/makedevs.tests5
-rwxr-xr-xtestsuite/printf.tests6
-rwxr-xr-xtestsuite/tar.tests8
3 files changed, 14 insertions, 5 deletions
diff --git a/testsuite/makedevs.tests b/testsuite/makedevs.tests
index eb51410b3..fd12460ec 100755
--- a/testsuite/makedevs.tests
+++ b/testsuite/makedevs.tests
@@ -4,6 +4,11 @@
4 4
5. ./testing.sh 5. ./testing.sh
6 6
7test x"`id -u`" = x"0" || {
8 echo "SKIPPED: makedevs (must be root to test this)"
9 exit 0
10}
11
7unset LANG 12unset LANG
8unset LC_COLLATE 13unset LC_COLLATE
9unset LC_ALL 14unset LC_ALL
diff --git a/testsuite/printf.tests b/testsuite/printf.tests
index b48e293f4..9a3c87473 100755
--- a/testsuite/printf.tests
+++ b/testsuite/printf.tests
@@ -89,9 +89,9 @@ testing "printf understands %Ld" \
89 89
90testing "printf handles %d bad_input" \ 90testing "printf handles %d bad_input" \
91 "${bb}printf '%d\n' 1 - 2 bad 3 123bad 4 2>&1; echo \$?" \ 91 "${bb}printf '%d\n' 1 - 2 bad 3 123bad 4 2>&1; echo \$?" \
92"1\n""printf: -: invalid number\n""0\n"\ 92"1\n""printf: invalid number '-'\n""0\n"\
93"2\n""printf: bad: invalid number\n""0\n"\ 93"2\n""printf: invalid number 'bad'\n""0\n"\
94"3\n""printf: 123bad: invalid number\n""0\n"\ 94"3\n""printf: invalid number '123bad'\n""0\n"\
95"4\n""1\n" \ 95"4\n""1\n" \
96 "" "" 96 "" ""
97 97
diff --git a/testsuite/tar.tests b/testsuite/tar.tests
index cef16b65e..8b2523ff1 100755
--- a/testsuite/tar.tests
+++ b/testsuite/tar.tests
@@ -55,11 +55,13 @@ rm -rf input_* test.tar 2>/dev/null
55chmod 741 input_hard1 55chmod 741 input_hard1
56ln input_hard1 input_hard2 56ln input_hard1 input_hard2
57mkdir input_dir 57mkdir input_dir
58chmod 550 input_dir
59ln input_hard1 input_dir 58ln input_hard1 input_dir
60ln input_hard2 input_dir 59ln input_hard2 input_dir
60chmod 550 input_dir
61tar cf test.tar input_* 61tar cf test.tar input_*
62tar tvf test.tar | sed "s/.*[0-9] input/input/" 62tar tvf test.tar | sed "s/.*[0-9] input/input/"
63chmod 770 input_dir
64rm -rf input_*
63tar xf test.tar 2>&1 65tar xf test.tar 2>&1
64echo Ok: $? 66echo Ok: $?
65ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" 67ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
@@ -86,11 +88,13 @@ rm -rf input_* test.tar 2>/dev/null
86chmod 741 input_file 88chmod 741 input_file
87ln -s input_file input_soft 89ln -s input_file input_soft
88mkdir input_dir 90mkdir input_dir
89chmod 550 input_dir
90ln input_file input_dir 91ln input_file input_dir
91ln input_soft input_dir 92ln input_soft input_dir
93chmod 550 input_dir
92tar cf test.tar input_* 94tar cf test.tar input_*
93tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort 95tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort
96chmod 770 input_dir
97rm -rf input_*
94tar xf test.tar 2>&1 98tar xf test.tar 2>&1
95echo Ok: $? 99echo Ok: $?
96ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" 100ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"