mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
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:
+12
-13
@@ -21,8 +21,8 @@
|
||||
#-----------------------------------------------------------------------
|
||||
#
|
||||
|
||||
seq=`basename "$0"`
|
||||
seqres="$RESULT_DIR/$seq"
|
||||
seq=`basename $0`
|
||||
seqres=$RESULT_DIR/$seq
|
||||
echo "QA output created by $seq"
|
||||
|
||||
here=`pwd`
|
||||
@@ -33,7 +33,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 7 15
|
||||
_cleanup()
|
||||
{
|
||||
cd /
|
||||
rm -rf "$tmp".*
|
||||
rm -rf $tmp.*
|
||||
wait
|
||||
}
|
||||
|
||||
@@ -48,25 +48,24 @@ _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=4096
|
||||
blksz=65536
|
||||
|
||||
echo "Initialize files"
|
||||
echo > "$seqres.full"
|
||||
_pwrite_byte 0x61 0 $((loops * blksz)) "$testdir/file1" >> "$seqres.full"
|
||||
_cp_reflink "$testdir/file1" "$testdir/file2"
|
||||
echo > $seqres.full
|
||||
_pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
|
||||
_cp_reflink $testdir/file1 $testdir/file2
|
||||
_scratch_remount
|
||||
|
||||
echo "Delete while rewriting"
|
||||
rm -rf "$testdir/file1" &
|
||||
_pwrite_byte 0x62 0 $((loops * blksz)) "$testdir/file1" >> "$seqres.full"
|
||||
rm -rf $testdir/file1 &
|
||||
_pwrite_byte 0x62 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
|
||||
wait
|
||||
|
||||
# success, all done
|
||||
|
||||
Reference in New Issue
Block a user