intigrate bulkstat_unlink_test into XFS-QA
[xfstests-dev.git] / 173
1 #! /bin/sh
2 # FSQA Test No. 173
3 #
4 # Check the filestreams allocator is doing its job.
5 # Multi-file data streams should always write into seperate AGs.
6 #
7 #-----------------------------------------------------------------------
8 #  Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
9 #-----------------------------------------------------------------------
10 #
11 # creator
12 owner=dgc@sgi.com
13
14 seq=`basename $0`
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 rm -f $seq.full
20 status=1    # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         cd /
26         rm -f $tmp.*
27 }
28
29 # get standard environment, filters and checks
30 . ./common.rc
31 . ./common.filter
32
33 # real QA test starts here
34 _supported_fs xfs
35 _supported_os IRIX Linux
36
37 _require_scratch
38
39 . ./common.filestreams
40
41 _check_filestreams_support || _notrun "filestreams not available"
42
43 # test large number of streams, multiple I/O per file, 120s timeout
44 # Because each stream spills over an AG, the stream count needs to
45 # be less than or equal to half the AG count so we don't run out of AGs.
46 _set_stream_timeout_centisecs 12000
47
48 _test_streams 64 16 33 8 2 1 1 fail
49 _test_streams 64 16 32 8 2 0 1
50 _test_streams 64 16 33 8 2 0 0 fail
51 _test_streams 64 16 32 8 2 1 0
52
53 status=0
54 exit
55