blob: f7117dcfd37ff65b151c5bab937075381179559e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#! /bin/sh
. $srcdir/setup
if test -z "$other_partition_tmpdir"; then
exit 77
fi
null=.mv-null
dir=.mv-dir
framework_failure=0
rm -f $null || framework_failure=1
mknod $null p || framework_failure=1
mkdir -p $dir/a/b/c $dir/d/e/f || framework_failure=1
touch $dir/a/b/c/file1 $dir/d/e/f/file2 || framework_failure=1
if test $framework_failure = 1; then
echo 'failure in testing framework'
# exit 77 here to indicate that we couldn't run the test.
# At least running on SunOS 4.1.4, using a directory NFS mounted
# from an OpenBSD system, the above mknod fails.
exit 77
fi
# Make sure we get English translations.
LANGUAGE=C
export LANGUAGE
LC_ALL=C
export LC_ALL
LANG=C
export LANG
fail=0
mv --verbose $null $dir $other_partition_tmpdir > out || fail=1
# Make sure the files are gone.
test -f $null && fail=1
test -d $dir && fail=1
# Make sure they were moved.
# Since `test -e' is not portable, use `ls'.
ls $other_partition_tmpdir/$null > /dev/null || fail=1
test -d $other_partition_tmpdir/$dir/a/b/c || fail=1
sed "s,$other_partition_tmpdir,XXX," out > out2
cat > exp <<EOF
$null -> XXX/$null
removing $null
$dir -> XXX/$dir
$dir/a -> XXX/$dir/a
$dir/a/b -> XXX/$dir/a/b
$dir/a/b/c -> XXX/$dir/a/b/c
$dir/a/b/c/file1 -> XXX/$dir/a/b/c/file1
$dir/d -> XXX/$dir/d
$dir/d/e -> XXX/$dir/d/e
$dir/d/e/f -> XXX/$dir/d/e/f
$dir/d/e/f/file2 -> XXX/$dir/d/e/f/file2
removing all entries of directory $dir
removing all entries of directory $dir/a
removing all entries of directory $dir/a/b
removing all entries of directory $dir/a/b/c
removing $dir/a/b/c/file1
removing the directory itself: $dir/a/b/c
removing the directory itself: $dir/a/b
removing the directory itself: $dir/a
removing all entries of directory $dir/d
removing all entries of directory $dir/d/e
removing all entries of directory $dir/d/e/f
removing $dir/d/e/f/file2
removing the directory itself: $dir/d/e/f
removing the directory itself: $dir/d/e
removing the directory itself: $dir/d
removing the directory itself: $dir
EOF
cmp out2 exp || fail=1
# cd $other_partition_tmpdir
# ls -l -A -R $other_partition_tmpdir
rm -rf $null $dir $other_partition_tmpdir out out2 exp
exit $fail
|