Add GPL license plate to SGI's test files.
[xfstests-dev.git] / 183
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 183
22 #
23 # Test to check bulkstat returns unlinked-but-referenced inodes
24 # (PVs: 972128, 972004)
25 #
26 # creator
27 owner=xaiki@sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46
47 # real QA test starts here
48
49 # Modify as appropriate.
50 _supported_fs xfs
51 _supported_os Linux
52
53 # Setup Filesystem
54 _require_scratch
55 _scratch_mkfs_xfs >/dev/null 2>&1 \
56         || _fail "mkfs failed"
57
58 _scratch_mount \
59         || _fail "mount failed"
60
61 # run Mark Goodwin test here
62 # Usage: ./bulkstat_unlink_test iterations nfiles stride dir
63 #        Create dir with nfiles, unlink each stride'th file, sync, bulkstat
64 echo "Start original bulkstat_unlink_test with -r switch"
65 $here/src/bulkstat_unlink_test -r 1 100 1 $SCRATCH_MNT/bulkstat
66
67 # success, all done
68 status=0
69 exit