intigrate bulkstat_unlink_test into XFS-QA
[xfstests-dev.git] / 172
1 #! /bin/sh
2 # FSQA Test No. 172
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 reaper works by setting timeout low. Expected to fail
44 # for buffered, succeed for direct I/O.
45 _set_stream_timeout_centisecs 50
46
47 _test_streams 8 16 4 8 3 1 0 fail
48 _test_streams 64 16 20 10 1 0 1
49
50 status=0
51 exit
52