xfstests: remove stale machine configs
[xfstests-dev.git] / 111
1 #! /bin/bash
2 # FS QA Test No. 111
3 #
4 # Infinite xfs_bulkstat bad-inode loop case from Roger Willcocks.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2006 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        # failure is the default!
31 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
32
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
36
37 # real QA test starts here
38 _supported_fs xfs
39 _supported_os Linux
40 _require_scratch
41
42 [ "$XFS_FSR_PROG" = "" ] && _notrun "xfs_fsr not found"
43
44 # real QA test starts here
45 umount $SCRATCH_DEV 2>/dev/null
46 MKFS_OPTIONS="-bsize=4096"
47 MOUNT_OPTIONS="-o noatime"
48 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
49 _scratch_mount
50
51 echo Create some files
52 I=0
53 while [ $I -lt 1000 ]
54 do
55     cp src/itrash.c $SCRATCH_MNT/${I}
56     let I=$I+1
57 done
58 umount $SCRATCH_DEV
59
60 echo Blat inode clusters
61 src/itrash $SCRATCH_DEV
62
63 _scratch_mount
64
65 echo Attempting bulkstat
66 #src/bstat -q $SCRATCH_MNT
67 xfs_fsr $SCRATCH_MNT
68
69 status=0
70 exit