fstests: initial bcachefs support
[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
36 # Generally, we want to avoid journal errors on the extended testcase. Only
37 # unset the -s flag if we have a logdev
38 sflag='-s'
39 case $FSTYP in
40         btrfs)
41                 _notrun "btrfs has a specialized test for this"
42                 ;;
43         ext3|ext4|xfs|bcachefs)
44                 # Do the more thorough test if we have a logdev
45                 _has_logdev && sflag=''
46                 ;;
47         *)
48                 ;;
49 esac
50
51 _require_dm_target error
52 _require_test_program fsync-err
53 _require_test_program dmerror
54
55 rm -f $seqres.full
56
57 # Disable the scratch rt device to avoid test failures relating to the rt
58 # bitmap consuming all the free space in our small data device.
59 unset SCRATCH_RTDEV
60
61 echo "Format and mount"
62 _scratch_mkfs > $seqres.full 2>&1
63 _dmerror_init
64 _dmerror_mount
65
66 _require_fs_space $SCRATCH_MNT 65536
67
68 testfile=$SCRATCH_MNT/fsync-err-test
69
70 echo "$here/src/fsync-err $sflag -d $here/src/dmerror $testfile" >> $seqres.full
71 $here/src/fsync-err $sflag -d $here/src/dmerror $testfile
72
73 # success, all done
74 _dmerror_load_working_table
75 _dmerror_unmount
76 _dmerror_cleanup
77
78 # fs may be corrupt after this -- attempt to repair it
79 _repair_scratch_fs >> $seqres.full
80
81 status=0
82 exit