common: Check the file system consistency on SCRATCH_DEV
[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         umount $SCRATCH_MNT 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 IRIX Linux
57
58 _require_scratch
59
60 echo "*** init fs"
61
62 rm -f $seqres.full
63 umount $SCRATCH_DEV >/dev/null 2>&1
64 echo "*** MKFS ***"                         >>$seqres.full
65 echo ""                                     >>$seqres.full
66 _scratch_mkfs                               >>$seqres.full 2>&1 \
67         || _fail "mkfs failed"
68 _scratch_mount                              >>$seqres.full 2>&1 \
69         || _fail "mount failed"
70
71 echo "*** test concurrent block/fs access"
72
73 cat $SCRATCH_DEV >/dev/null &
74 pid=$!
75
76 FSSTRESS_ARGS=`_scale_fsstress_args -p 2 -n 2000 $FSSTRESS_AVOID`
77 echo "run fsstress with args: $FSSTRESS_ARGS" >>$seqres.full
78 $FSSTRESS_PROG $FSSTRESS_ARGS >>$seqres.full
79 _lets_get_pidst
80
81 echo "*** done"
82 status=0
83 exit