tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / touch / empty-file
1 #!/bin/sh
2 # Make sure touch can set the mtime on an empty file.
3
4 # Copyright (C) 1998, 1999, 2000, 2005-2009 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 3 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, see <http://www.gnu.org/licenses/>.
18
19
20 # Volker Borchert reported that touch 3.16r (and presumably all before that)
21 # fails to work on SunOS 4.1.3 with `most of the recommended patches' when
22 # the empty file is on an NFS-mounted 4.2 volume.
23
24 if test "$VERBOSE" = yes; then
25   set -x
26   touch --version
27 fi
28
29 . $srcdir/test-lib.sh
30
31 DEFAULT_SLEEP_SECONDS=2
32 SLEEP_SECONDS=${SLEEP_SECONDS=$DEFAULT_SLEEP_SECONDS}
33
34
35 # FIXME: find writable directories on other partitions
36 # and run the test in those directories, too.
37
38 : ${TOUCH_DIR_LIST=.}
39
40
41 for d in $TOUCH_DIR_LIST; do
42   rm -rf $d/a $d/b $d/c
43   > $d/a || framework_failure
44   test -f $d/a || framework_failure
45   > $d/b || framework_failure
46   test -f $d/b || framework_failure
47   > $d/c || framework_failure
48   test -f $d/c || framework_failure
49 done
50
51 echo sleeping for $SLEEP_SECONDS seconds...
52 sleep $SLEEP_SECONDS
53 for d in $TOUCH_DIR_LIST; do
54   touch $d/a || fail=1
55   set x `ls -t $d/a $d/b`
56   test "$*" = "x $d/a $d/b" || fail=1
57 done
58
59 echo sleeping for $SLEEP_SECONDS seconds...
60 sleep $SLEEP_SECONDS
61 for d in $TOUCH_DIR_LIST; do
62   touch $d/b
63   set x `ls -t $d/a $d/b`
64   test "$*" = "x $d/b $d/a" || fail=1
65
66   if touch - 1< $d/c 2> /dev/null; then
67     set x `ls -t $d/a $d/c`
68     test "$*" = "x $d/c $d/a" || fail=1
69   fi
70
71   rm -rf $d/a $d/b $d/c
72 done
73
74 if test $fail != 0; then
75   cat 1>&2 <<EOF
76 *** This test has just failed.  That can happen when the test is run in an
77 *** NFS-mounted directory on a system whose clock is not well synchronized
78 *** with that of the NFS server.  If you think that is the reason, set the
79 *** environment variable SLEEP_SECONDS to some number of seconds larger than
80 *** the default of $DEFAULT_SLEEP_SECONDS and rerun the test.
81 EOF
82 fi
83
84 Exit $fail