Fix unexpected 32 bit sign extension for linux time. It was fine for Irix.
[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 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 number of streams greater than AGs. Expected to fail.
43 _set_stream_timeout_centisecs 6000
44
45 _test_streams 8 32 65 3 1 1 0 fail
46 _test_streams 8 32 65 3 1 0 1 fail
47
48 status=0
49 exit
50