summaryrefslogtreecommitdiff
path: root/tests/generic/080
blob: 1bfc6d723a20d0701998deabdf462273cd14be21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0

#
# FS QA Test No. 080
#
# Verify that mtime is updated when writing to mmap-ed pages
#
. ./common/preamble
_begin_fstest auto quick

status=0

# Override the default cleanup function.
_cleanup()
{
	cd /
	rm -f $tmp.*
	rm -f $testfile
}

# Import common functions.
. ./common/filter

# real QA test starts here
_supported_fs generic
_require_test

echo "Silence is golden."

# pattern the file.
testfile=$TEST_DIR/mmap_mtime_testfile
$XFS_IO_PROG -f -c "pwrite 0 4k" -c fsync $testfile >> $seqres.full

# sample timestamps.
mtime1=`stat -c %Y $testfile`
ctime1=`stat -c %Z $testfile`
echo "before mwrite: $mtime1 $ctime1" >> $seqres.full

# map read followed by map write to trigger timestamp change
sleep 2
$XFS_IO_PROG -c "mmap 0 4k" -c "mread 0 4k" -c "mwrite 0 4k" $testfile \
	>> $seqres.full

# sample and verify that timestamps have changed.
mtime2=`stat -c %Y $testfile`
ctime2=`stat -c %Z $testfile`
echo "after mwrite : $mtime2 $ctime2" >> $seqres.full

if [ "$mtime1" == "$mtime2" ]; then
	echo "mtime not updated"
	let status=$status+1
fi
if [ "$ctime1" == "$ctime2" ]; then
	echo "ctime not updated"
	let status=$status+1
fi

exit