remove .full file before running test
[xfstests-dev.git] / 170
1 #! /bin/sh
2 # FSQA Test No. 170
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 - based on work from ddiss@sgi.co
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 small stream, multiple I/O per file, 30s timeout
41 # XXX: irix timer mechanism?
42 echo 3000 > /proc/sys/fs/xfs/filestream_centisecs
43 _test_streams 8 16 4 8 3 0 0
44 _test_streams 8 16 4 8 3 1 0
45 _test_streams 8 16 4 8 3 0 1
46 _test_streams 8 16 4 8 3 1 1
47
48 status=0
49 exit
50