For XFSQA test 018 081 082 095 the test specifies test wide mkfs options using MKFS_O...
[xfstests-dev.git] / 174
1 #! /bin/sh
2 # FSQA Test No. 174
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 status=1    # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24         cd /
25         rm -rf ${SCRATCH_MNT}/stream*
26 }
27
28 # get standard environment, filters and checks
29 . ./common.rc
30 . ./common.filter
31
32 # real QA test starts here
33 _supported_fs xfs
34 _supported_os IRIX Linux
35
36 _require_scratch
37
38 . ./common.filestreams
39
40 # test number of streams greater than AGs. Expected to fail.
41 echo 6000 > /proc/sys/fs/xfs/filestream_centisecs
42 _test_streams 8 32 65 3 1 1 0 fail
43 _test_streams 8 32 65 3 1 0 1 fail
44
45 status=0
46 exit
47