793b86944fc0ec00e79e944109e250347f59ece0
[xfstests-dev.git] / 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 # creator
25 owner=nathans@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1
33
34 _lets_get_pidst()
35 {
36         if [ -n "$pid" ]; then
37                 kill -TERM $pid 2>/dev/null
38                 pid=""
39                 wait 2>/dev/null
40         fi
41 }
42
43 _cleanup()
44 {
45         echo "*** unmount"
46         umount $SCRATCH_MNT 2>/dev/null
47         _lets_get_pidst
48 }
49 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
50
51 # get standard environment, filters and checks
52 . ./common.rc
53 . ./common.filter
54
55 # real QA test starts here
56 _supported_fs generic
57 _supported_os IRIX Linux
58
59 _require_scratch
60
61 echo "*** init fs"
62
63 rm -f $seq.full
64 umount $SCRATCH_DEV >/dev/null 2>&1
65 echo "*** MKFS ***"                         >>$seq.full
66 echo ""                                     >>$seq.full
67 _scratch_mkfs                               >>$seq.full 2>&1 \
68         || _fail "mkfs failed"
69 _scratch_mount                              >>$seq.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 -p 2 -n 2000 $FSSTRESS_AVOID`
78 echo "run fsstress with args: $FSSTRESS_ARGS" >>$seq.full
79 $FSSTRESS_PROG $FSSTRESS_ARGS >>$seq.full
80 _lets_get_pidst
81 _check_scratch_fs
82
83 echo "*** done"
84 status=0
85 exit