reflink: fix style problems in existing tests

Fix style problems such as unnecessary use of quotes, add helper
variables to reduce visual clutter, and other minor fixes to make the
first batch of tests more closely resemble the second round tests.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
Darrick J. Wong
2016-02-10 00:33:10 -08:00
parent 96de24c84a
commit 2616587012
87 changed files with 2159 additions and 2143 deletions
+12 -13
View File
@@ -22,8 +22,8 @@
#-----------------------------------------------------------------------
#
seq=`basename "$0"`
seqres="$RESULT_DIR/$seq"
seq=`basename $0`
seqres=$RESULT_DIR/$seq
echo "QA output created by $seq"
here=`pwd`
@@ -34,7 +34,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 7 15
_cleanup()
{
cd /
rm -rf "$tmp".*
rm -rf $tmp.*
wait
}
@@ -49,27 +49,26 @@ _require_scratch_reflink
_require_cp_reflink
echo "Format and mount"
_scratch_mkfs > "$seqres.full" 2>&1
_scratch_mount >> "$seqres.full" 2>&1
_scratch_mkfs > $seqres.full 2>&1
_scratch_mount >> $seqres.full 2>&1
testdir="$SCRATCH_MNT/test-$seq"
rm -rf "$testdir"
mkdir "$testdir"
testdir=$SCRATCH_MNT/test-$seq
mkdir $testdir
loops=1024
nr_loops=$((loops - 1))
blksz=65536
echo "Initialize file"
echo > "$seqres.full"
_pwrite_byte 0x61 0 $((loops * blksz)) "$testdir/file1" >> "$seqres.full"
echo > $seqres.full
_pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
_scratch_remount
# Snapshot creator...
snappy() {
n=0
while [ ! -e "$testdir/finished" ]; do
_cp_reflink "$testdir/file1" "$testdir/snap_$n" || break
while [ ! -e $testdir/finished ]; do
_cp_reflink $testdir/file1 $testdir/snap_$n || break
n=$((n + 1))
done
}
@@ -77,7 +76,7 @@ snappy() {
echo "Snapshot a file undergoing buffered rewrite"
snappy &
seq $nr_loops -1 0 | while read i; do
_pwrite_byte 0x63 $((i * blksz)) $blksz "$testdir/file1" >> "$seqres.full"
_pwrite_byte 0x63 $((i * blksz)) $blksz $testdir/file1 >> $seqres.full
done
touch $testdir/finished
wait