xfstests: eliminate warnings under dmapi/src/suite1/cmd (3)
[xfstests-dev.git] / 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 # creator
27 owner=tes@emu.melbourne.sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "exit \$status" 0 1 2 3 15
36
37 _access_time()
38 {
39         stat --format=%X $1
40 }
41
42 # get standard environment, filters and checks
43 . ./common.rc
44 . ./common.filter
45
46 # real QA test starts here
47
48 _supported_fs xfs udf nfs
49 _supported_os Linux
50 #delay=150
51 #delay=75
52 #delay=60
53 #delay=45
54 delay=40
55
56 testfile=$TEST_DIR/testfile
57 rm -f $testfile
58 rm -f $seq.full
59
60 echo test >$testfile
61 time1=`_access_time $testfile | tee -a $seq.full` 
62
63 echo "sleep for $delay"
64 sleep $delay # sleep to allow time to move on for access
65 cat $testfile
66 time2=`_access_time $testfile | tee -a $seq.full` 
67
68 cd /
69 umount $TEST_DIR
70 _test_mount
71 time3=`_access_time $testfile | tee -a $here/$seq.full`
72
73 delta1=`expr $time2 - $time1`
74 delta2=`expr $time3 - $time1`
75
76 echo "delta1 - access time after sleep in-core: $delta1"
77 echo "delta2 - access time after sleep on-disk: $delta2"
78
79 # success, all done
80 status=0
81 exit