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