blob: 3d3a42a2e0b9bdab5cdd9a37cfa7c17cfec5e867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2006 Silicon Graphics, Inc. All Rights Reserved.
#
# FSQA Test No. 129
#
# looptests created from CXFSQA test looptest
#
. ./common/preamble
_begin_fstest rw auto quick
# Import common functions.
. ./common/filter
echo_and_run()
{
echo "$1"
$1
}
# real QA test starts here
_supported_fs generic
_require_scratch
_require_sparse_files
_scratch_mkfs >/dev/null 2>&1
_scratch_mount "-o nosuid"
mkdir $SCRATCH_MNT/looptest
$here/src/looptest -i 100000 -r -w -b 8192 -s $SCRATCH_MNT/looptest/looptest1.tst
$here/src/looptest -i 10000 -t -r -w -s -b 102400 $SCRATCH_MNT/looptest/looptest2.tst
$here/src/looptest -i 50000 -r -w -b 256 -s $SCRATCH_MNT/looptest/looptest3.tst
$here/src/looptest -i 2000 -o -r -w -b 8192 -s $SCRATCH_MNT/looptest/looptest4.tst
status=0
exit
|