Modify dassi QA scratch device
[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 . ./common.filestreams
33
34 # real QA test starts here
35 _supported_fs xfs
36 _supported_os IRIX Linux
37
38 _require_scratch
39
40 _check_filestreams_support || _notrun "filestreams not available"
41
42 # test large number of streams, multiple I/O per file, 120s timeout
43 # Because each stream spills over an AG, the stream count needs to
44 # be less than or equal to half the AG count so we don't run out of AGs.
45 _set_stream_timeout_centisecs 12000
46
47 _test_streams 64 16 33 8 2 1 1 fail
48 _test_streams 64 16 32 8 2 0 1
49 _test_streams 64 16 33 8 2 0 0 fail
50 _test_streams 64 16 32 8 2 1 0
51
52 status=0
53 exit
54