Add/fix copyright notices and adjust to latest GNU FDL.
[platform/upstream/coreutils.git] / tests / mv / partition-perm
1 #!/bin/sh
2 # Make sure permissions are preserved when moving from one partition to another.
3
4 # Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 if test "$VERBOSE" = yes; then
22   set -x
23   mv --version
24 fi
25
26 . $srcdir/setup
27 . $srcdir/../envvar-check
28 . $srcdir/../lang-default
29
30 if test -z "$other_partition_tmpdir"; then
31   exit 77
32 fi
33
34 pwd=`pwd`
35 dir=p-perm-$$
36 trap "cd $pwd; rm -rf $dir $other_partition_tmpdir" 0 1 2 3 15
37
38 mkdir $dir
39
40 cd $dir
41 : > file
42 chmod a=rwx file
43
44 umask 077
45 mv file $other_partition_tmpdir
46
47 fail=0
48 test -f file && fail=1
49 test -f $other_partition_tmpdir/file || fail=1
50
51 # This would have failed with the mv from fileutils-4.0i.
52 set _ `ls -l $other_partition_tmpdir/file`; shift; mode=$1
53 test "$mode" = "-rwxrwxrwx" || fail=1
54
55 exit $fail