mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
7e98d41a6e
Refactor every test in the entire test suite to use the new boilerplate functions. This also migrates all the test group information into the test files. This patch has been autogenerated via the command: ./tools/convert-group btrfs ceph cifs ext4 f2fs generic nfs ocfs2 overlay perf shared udf xfs Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Allison Henderson <allison.henderson@oracle.com> Reviewed-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
68 lines
2.0 KiB
Bash
Executable File
68 lines
2.0 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 258
|
|
#
|
|
# Ensuring that copy on write in directio mode to the source file when the
|
|
# CoW range covers delalloc blocks and regular shared blocks.
|
|
# - Set cowextsz.
|
|
# - Create two files.
|
|
# - Truncate the first file.
|
|
# - Write the odd blocks of the first file.
|
|
# - Reflink the odd blocks of the first file into the second file.
|
|
# - Write the even blocks of the first file.
|
|
# - DIO CoW the first file across the halfway mark, starting with the
|
|
# regular extent.
|
|
# - Check that the files are now different where we say they're different.
|
|
#
|
|
. ./common/preamble
|
|
_begin_fstest auto quick clone
|
|
|
|
# Import common functions.
|
|
. ./common/filter
|
|
. ./common/reflink
|
|
|
|
# real QA test starts here
|
|
_require_scratch_reflink
|
|
_require_xfs_io_command "falloc"
|
|
_require_xfs_io_command "cowextsize"
|
|
_require_odirect
|
|
|
|
echo "Format and mount"
|
|
_scratch_mkfs > $seqres.full 2>&1
|
|
_scratch_mount >> $seqres.full 2>&1
|
|
|
|
testdir=$SCRATCH_MNT/test-$seq
|
|
mkdir $testdir
|
|
|
|
echo "Create the original files"
|
|
blksz=65536
|
|
nr=64
|
|
filesize=$((blksz * nr))
|
|
$XFS_IO_PROG -c "cowextsize $((blksz * 16))" $testdir >> $seqres.full
|
|
_sweave_reflink_holes $blksz $nr $testdir/file1 $testdir/file3 >> $seqres.full
|
|
_scratch_cycle_mount
|
|
|
|
echo "Compare files"
|
|
md5sum $testdir/file1 | _filter_scratch
|
|
md5sum $testdir/file3 | _filter_scratch
|
|
md5sum $testdir/file1.chk | _filter_scratch
|
|
|
|
echo "CoW across the transition"
|
|
cowoff=$((filesize / 4))
|
|
cowsz=$((filesize / 2))
|
|
_sweave_reflink_holes_delalloc $blksz $nr $testdir/file1 >> $seqres.full
|
|
$XFS_IO_PROG -d -f -c "pwrite -S 0x63 -b $cowsz $cowoff $cowsz" $testdir/file1 >> $seqres.full
|
|
_pwrite_byte 0x63 $cowoff $cowsz $testdir/file1.chk >> $seqres.full
|
|
_scratch_cycle_mount
|
|
|
|
echo "Compare files"
|
|
md5sum $testdir/file1 | _filter_scratch
|
|
md5sum $testdir/file3 | _filter_scratch
|
|
md5sum $testdir/file1.chk | _filter_scratch
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|