tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / mv / childproof
1 #!/bin/sh
2 # Ensure that cp/mv/ln don't clobber a just-copied/moved/linked file.
3 # With fileutils-4.1 and earlier, this test would fail for cp and mv.
4 # With coreutils-6.9 and earlier, this test would fail for ln.
5
6 # Copyright (C) 2001, 2004, 2006-2009 Free Software Foundation, Inc.
7
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.
12
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.
17
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/>.
20
21 if test "$VERBOSE" = yes; then
22   set -x
23   cp --version
24   mv --version
25   ln --version
26 fi
27
28 . $srcdir/test-lib.sh
29 skip_if_root_
30
31 mkdir a b c || framework_failure
32 echo a > a/f || framework_failure
33 echo b > b/f || framework_failure
34
35
36 cp a/f b/f c 2> /dev/null && fail=1
37 test -f a/f || fail=1
38 test -f b/f || fail=1
39 test -f c/f || fail=1
40 test "`cat c/f`" = a || fail=1
41 rm -f c/f
42
43 # With --backup=numbered, it should succeed
44 cp --backup=numbered a/f b/f c || fail=1
45 test -f a/f || fail=1
46 test -f b/f || fail=1
47 test -f c/f || fail=1
48 test -f c/f.~1~ || fail=1
49 rm -f c/f*
50
51 mv a/f b/f c 2> /dev/null && fail=1
52 test -f a/f && fail=1
53 test -f b/f || fail=1
54 test -f c/f || fail=1
55 test "`cat c/f`" = a || fail=1
56
57 # Make sure mv still works when moving hard links.
58 # This is where the same_file test is necessary, and why
59 # we save file names in addition to dev/ino.
60 rm -f c/f* b/f
61 touch a/f
62 ln a/f b/g
63 mv a/f b/g c || fail=1
64 test -f a/f && fail=1
65 test -f b/g && fail=1
66 test -f c/f || fail=1
67 test -f c/g || fail=1
68
69 touch a/f b/f b/g
70 mv a/f b/f b/g c 2> /dev/null && fail=1
71 test -f a/f && fail=1  # a/f should have been moved
72 test -f b/f || fail=1  # b/f should remain
73 test -f b/g && fail=1  # b/g should have been moved
74 test -f c/f || fail=1
75 test -f c/g || fail=1
76
77 # Test ln -f.
78
79 rm -f a/f b/f c/f
80 echo a > a/f || fail=1
81 echo b > b/f || fail=1
82 ln -f a/f b/f c 2> /dev/null && fail=1
83 # a/f and c/f must be linked
84 test `stat --format %i a/f` = `stat --format %i c/f` || fail=1
85 # b/f and c/f must not be linked
86 test `stat --format %i b/f` = `stat --format %i c/f` && fail=1
87
88 Exit $fail