common: kill _supported_os
[xfstests-dev.git] / tests / generic / 441
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017, Jeff Layton <jlayton@redhat.com>
4 #
5 # FS QA Test No. 441
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 -rf $tmp.* $testdir
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
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 # Generally, we want to avoid journal errors on the extended testcase. Only
40 # unset the -s flag if we have a logdev
41 sflag='-s'
42 case $FSTYP in
43         btrfs)
44                 _notrun "btrfs has a specialized test for this"
45                 ;;
46         ext3|ext4|xfs)
47                 # Do the more thorough test if we have a logdev
48                 _has_logdev && sflag=''
49                 ;;
50         *)
51                 ;;
52 esac
53
54 _require_dm_target error
55 _require_test_program fsync-err
56 _require_test_program dmerror
57
58 rm -f $seqres.full
59
60 echo "Format and mount"
61 _scratch_mkfs > $seqres.full 2>&1
62 _dmerror_init
63 _dmerror_mount
64
65 _require_fs_space $SCRATCH_MNT 65536
66
67 testfile=$SCRATCH_MNT/fsync-err-test
68
69 echo "$here/src/fsync-err $sflag -d $here/src/dmerror $testfile" >> $seqres.full
70 $here/src/fsync-err $sflag -d $here/src/dmerror $testfile
71
72 # success, all done
73 _dmerror_load_working_table
74 _dmerror_unmount
75 _dmerror_cleanup
76
77 # fs may be corrupt after this -- attempt to repair it
78 _repair_scratch_fs >> $seqres.full
79
80 status=0
81 exit