fstests: move test group info to test files
[xfstests-dev.git] / tests / xfs / 171
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. 171
6 #
7 # Check the filestreams allocator is doing its job.
8 # Multi-file data streams should always write into seperate AGs.
9 #
10 . ./common/preamble
11 _begin_fstest rw filestreams
12
13 # Import common functions.
14 . ./common/filter
15 . ./common/filestreams
16
17 # real QA test starts here
18 _supported_fs xfs
19
20 _require_scratch
21
22 _check_filestreams_support || _notrun "filestreams not available"
23
24 # test large numbers of files, single I/O per file, 120s timeout
25 # Get close to filesystem full.
26 # 128 = ENOSPC
27 # 120 = 93.75% full, gets repeatable failures
28 # 112 = 87.5% full, should reliably succeed but doesn't *FIXME*
29 # 100 = 78.1% full, should reliably succeed
30 _set_stream_timeout_centisecs 12000
31
32 _test_streams 64 16 8 100 1 1 0
33 _test_streams 64 16 8 100 1 1 1
34 _test_streams 64 16 8 100 1 0 0
35 _test_streams 64 16 8 100 1 0 1
36
37 status=0
38 exit
39