common: kill _supported_os
[xfstests-dev.git] / tests / generic / 487
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018, Jeff Layton <jlayton@redhat.com>
4 #
5 # FS QA Test No. 487
6 #
7 # Open a file several times, write to it, fsync on all fds and make sure that
8 # they all return 0. Change the device to start throwing errors. Write again
9 # on all fds and fsync on all fds. Ensure that we get errors on all of them.
10 # Then fsync on all one last time and verify that all return 0.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1    # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 _cleanup()
22 {
23         cd /
24         rm -f $tmp.*
25         _dmerror_cleanup
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31 . ./common/dmerror
32
33 # real QA test starts here
34 _require_scratch_nocheck
35 # This test uses "dm" without taking into account the data could be on
36 # realtime subvolume, thus the test will fail with rtinherit=1
37 _require_no_rtinherit
38
39 sflag='-s'
40 case $FSTYP in
41         btrfs)
42                 _notrun "btrfs has a specialized test for this"
43                 ;;
44         *)
45                 ;;
46 esac
47
48 _require_logdev
49 _require_dm_target error
50
51 rm -f $seqres.full
52
53 echo "Format and mount"
54 _scratch_mkfs > $seqres.full 2>&1
55 _dmerror_init
56 _dmerror_mount
57
58 datalen=65536
59 _require_fs_space $SCRATCH_MNT $datalen
60
61 # use fd 5 to hold file open
62 testfile=$SCRATCH_MNT/fsync-open-after-err
63 exec 5>$testfile
64
65 # write some data to file and fsync it out
66 $XFS_IO_PROG -c "pwrite -q 0 $datalen" -c fsync $testfile
67
68 # flip device to non-working mode
69 _dmerror_load_error_table
70
71 # rewrite the data, call sync to ensure it's written back w/o scraping error
72 $XFS_IO_PROG -c "pwrite -q 0 $datalen" -c sync $testfile
73
74 # heal the device error
75 _dmerror_load_working_table
76
77 # open again and call fsync
78 echo "The following fsync should fail with EIO:"
79 $XFS_IO_PROG -c fsync $testfile
80 echo "done"
81
82 # close file
83 exec 5>&-
84
85 # success, all done
86 _dmerror_cleanup
87
88 status=0
89 exit