5b6cfbc96efec6bffe46c1ab82e294e738d7cf62
[xfstests-dev.git] / tests / generic / 192
1 #! /bin/bash
2 # FS QA Test No. 192
3 #
4 # Simple test of atime
5 # - ensure it is persistent after unmount
6 # - check updated time by correct amount
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "exit \$status" 0 1 2 3 15
35
36 _access_time()
37 {
38         stat -c %X $1
39 }
40
41 is_noatime_set() {
42         case "$MOUNT_OPTIONS" in
43                 *noatime*) return 0;;
44         esac
45         return 1
46 }
47
48 # get standard environment, filters and checks
49 . ./common/rc
50 . ./common/filter
51
52 # real QA test starts here
53
54 _supported_fs generic
55 _supported_os Linux
56 _require_test
57 _require_atime
58 #delay=150
59 #delay=75
60 #delay=60
61 #delay=45
62 delay=40
63
64 if is_noatime_set; then
65         _notrun "this test makes no sense with noatime"
66 fi
67
68 testfile=$TEST_DIR/testfile
69 rm -f $testfile
70 rm -f $seqres.full
71
72 echo test >$testfile
73 time1=`_access_time $testfile | tee -a $seqres.full`
74
75 echo "sleep for $delay"
76 sleep $delay # sleep to allow time to move on for access
77 cat $testfile
78 time2=`_access_time $testfile | tee -a $seqres.full`
79
80 cd /
81 umount $TEST_DIR
82 _test_mount
83 time3=`_access_time $testfile | tee -a $seqres.full`
84
85 delta1=`expr $time2 - $time1`
86 delta2=`expr $time3 - $time1`
87
88 echo "delta1 - access time after sleep in-core: $delta1"
89 echo "delta2 - access time after sleep on-disk: $delta2"
90
91 # success, all done
92 status=0
93 exit