| #! /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 | 
 | } | 
 |  | 
 |  | 
 | _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 |