Tizen 2.0 Release
[external/tizen-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, 2006 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
22 # Volker Borchert reported that touch 3.16r (and presumably all before that)
23 # fails to work on SunOS 4.1.3 with `most of the recommended patches' when
24 # the empty file is on an NFS-mounted 4.2 volume.
25
26 if test "$VERBOSE" = yes; then
27   set -x
28   touch --version
29 fi
30
31 . $srcdir/../envvar-check
32
33 DEFAULT_SLEEP_SECONDS=2
34 SLEEP_SECONDS=${SLEEP_SECONDS=$DEFAULT_SLEEP_SECONDS}
35
36 fail=0
37
38 # FIXME: find writable directories on other partitions
39 # and run the test in those directories, too.
40
41 : ${TOUCH_DIR_LIST=.}
42
43 framework_failure=0
44
45 for d in $TOUCH_DIR_LIST; do
46   rm -rf $d/a $d/b $d/c
47   > $d/a || framework_failure=1
48   test -f $d/a || framework_failure=1
49   > $d/b || framework_failure=1
50   test -f $d/b || framework_failure=1
51   > $d/c || framework_failure=1
52   test -f $d/c || framework_failure=1
53 done
54
55 if test $framework_failure = 1; then
56   echo 'failure in testing framework'
57   exit 1
58 fi
59
60 echo sleeping for $SLEEP_SECONDS seconds...
61 sleep $SLEEP_SECONDS
62 for d in $TOUCH_DIR_LIST; do
63   touch $d/a || fail=1
64   set x `ls -t $d/a $d/b`
65   test "$*" = "x $d/a $d/b" || fail=1
66 done
67
68 echo sleeping for $SLEEP_SECONDS seconds...
69 sleep $SLEEP_SECONDS
70 for d in $TOUCH_DIR_LIST; do
71   touch $d/b
72   set x `ls -t $d/a $d/b`
73   test "$*" = "x $d/b $d/a" || fail=1
74
75   if touch - 1< $d/c 2> /dev/null; then
76     set x `ls -t $d/a $d/c`
77     test "$*" = "x $d/c $d/a" || fail=1
78   fi
79
80   rm -rf $d/a $d/b $d/c
81 done
82
83 if test $fail != 0; then
84   cat 1>&2 <<EOF
85 *** This test has just failed.  That can happen when the test is run in an
86 *** NFS-mounted directory on a system whose clock is not well synchronized
87 *** with that of the NFS server.  If you think that is the reason, set the
88 *** environment variable SLEEP_SECONDS to some number of seconds larger than
89 *** the default of $DEFAULT_SLEEP_SECONDS and rerun the test.
90 EOF
91 fi
92
93 exit $fail