ac7653332cb0212cb70534b73b36a678e1c559b4
[xfstests-dev.git] / tests / generic / 076
1 #! /bin/bash
2 # FS QA Test No. 076
3 #
4 # Test blockdev reads in parallel with filesystem reads/writes
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1
32
33 _lets_get_pidst()
34 {
35         if [ -n "$pid" ]; then
36                 kill -TERM $pid 2>/dev/null
37                 pid=""
38                 wait 2>/dev/null
39         fi
40 }
41
42 _cleanup()
43 {
44         echo "*** unmount"
45         _scratch_unmount 2>/dev/null
46         _lets_get_pidst
47 }
48 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common/rc
52 . ./common/filter
53
54 # real QA test starts here
55 _supported_fs generic
56 _supported_os Linux
57
58 _require_scratch
59 _require_local_device $SCRATCH_DEV
60
61 echo "*** init fs"
62
63 rm -f $seqres.full
64 _scratch_unmount >/dev/null 2>&1
65 echo "*** MKFS ***"                         >>$seqres.full
66 echo ""                                     >>$seqres.full
67 _scratch_mkfs                               >>$seqres.full 2>&1 \
68         || _fail "mkfs failed"
69 _scratch_mount                              >>$seqres.full 2>&1 \
70         || _fail "mount failed"
71
72 echo "*** test concurrent block/fs access"
73
74 cat $SCRATCH_DEV >/dev/null &
75 pid=$!
76
77 FSSTRESS_ARGS=`_scale_fsstress_args -d $SCRATCH_MNT -p 2 -n 2000 $FSSTRESS_AVOID`
78 echo "run fsstress with args: $FSSTRESS_ARGS" >>$seqres.full
79 $FSSTRESS_PROG $FSSTRESS_ARGS >>$seqres.full
80 _lets_get_pidst
81
82 echo "*** done"
83 status=0
84 exit