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