tests: change copyright year from 2011 to 2012 in sample-test
[coreutils/ericb.git] / tests / mv / part-rename
blobe3a7db1da205b56a4a85780627d3dca94aefea7c
1 #!/bin/sh
2 # Moving a directory specified with a trailing slash from one partition to
3 # another, and giving it a different name at the destination would cause mv
4 # to get a failed assertion.
6 # Copyright (C) 2000, 2002, 2004, 2006-2011 Free Software Foundation, Inc.
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 . "${srcdir=.}/init.sh"; path_prepend_ ../src
22 print_ver_ mv
23 cleanup_() { rm -rf "$other_partition_tmpdir"; }
24 . "$abs_srcdir/other-fs-tmpdir"
26 mkdir foo || framework_failure_
29 mv foo/ "$other_partition_tmpdir/bar" || fail=1
31 Exit $fail