blob: 410034d80a1e2f423c0648495ea30c45a0dad5c5 (
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
|
#! /bin/sh
: ${MV=mv}
: ${RM=rm}
: ${MKNOD=mknod}
: ${MKDIR=mkdir}
: ${TOUCH=touch}
. $srcdir/setup
if test -z $other_partition_tmpdir; then
exit 77
fi
null=.mv-null
dir=.mv-dir
test_failure=0
$RM -f $null || test_failure=1
$MKNOD $null p || test_failure=1
$MKDIR -p $dir/a/b/c $dir/d/e/f || test_failure=1
$TOUCH $dir/a/b/c/file1 $dir/d/e/f/file2 || test_failure=1
if test $test_failure = 1; then
echo 'failure in testing framework'
exit 1
fi
fail=0
$MV $null $dir $other_partition_tmpdir || fail=1
$RM -rf $null $dir $other_partition_tmpdir
exit $fail
|