generic: add test for boundary in xfs_attr_shortform_verify
[xfstests-dev.git] / tests / generic / 551
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2019 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 551
6 #
7 # Randomly direct AIO write&verify stress test
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -f $tmp.*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # remove previous $seqres.full before test
29 rm -f $seqres.full
30
31 # real QA test starts here
32 _supported_fs generic
33 _supported_os Linux
34 _require_scratch
35 _require_aiodio aio-dio-write-verify
36
37 _scratch_mkfs > $seqres.full 2>&1
38 _scratch_mount
39
40 localfile=$SCRATCH_MNT/testfile
41 diosize=`_min_dio_alignment $SCRATCH_DEV`
42
43 # The maximum write size and offset are both 32k diosize. So the maximum
44 # file size will be (32 * 2)k
45 free_size_k=`df -kP $SCRATCH_MNT | grep -v Filesystem | awk '{print $4}'`
46 max_io_size_b=$((32 * 1024))
47 if [ $max_io_size_b -gt $((free_size_k * 1024 / 2 / diosize)) ]; then
48         max_io_size_b=$((free_size_k * 1024 / 2 / diosize))
49 fi
50
51 do_test()
52 {
53         local num_oper
54         local oper_list=""
55         local size
56         local off
57         local truncsize
58         local total_size=0
59         local avail_mem=`_available_memory_bytes`
60
61         # the number of AIO write operation
62         num_oper=$((RANDOM % 64 + 1))
63
64         for ((i=0; i<num_oper; i++)); do
65                 size=$(((RANDOM % max_io_size_b + 1) * diosize))
66                 total_size=$((total_size + size*2))
67                 if [[ $total_size -ge $avail_mem ]]; then
68                         break
69                 fi
70                 off=$((RANDOM % max_io_size_b * diosize))
71                 oper_list="$oper_list -a size=$size,off=$off"
72         done
73         truncsize=$(((RANDOM * diosize + RANDOM % diosize) % max_io_size_b))
74
75         $AIO_TEST -t $truncsize $oper_list $localfile
76         if [ $? -ne 0 ];then
77                 echo "$AIO_TEST -t $truncsize $oper_list $localfile"
78                 echo "==========^^ Fail ^^=========="
79         fi
80 }
81
82 testimes=$((LOAD_FACTOR * 100))
83 while [ $testimes -gt 0 ]; do
84         echo > $localfile
85         do_test
86         ((testimes--))
87 done
88
89 echo "Silence is golden"
90
91 # success, all done
92 status=0
93 exit