Koen De Wit
2013-Jul-02 09:27 UTC
[PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
This testscript creates reflinks to files on different subvolumes, overwrites the original files and reflinks, and moves reflinked files between subvolumes. Originally submitted as testcase 302, changes are made based on comments from Eric: http://oss.sgi.com/archives/xfs/2013-03/msg00231.html Two new common/rc functions used in this script (_require_cp_reflink and _verify_reflink) have been submitted recently: http://oss.sgi.com/archives/xfs/2013-05/msg00745.html Thanks to Eric Sandeen and Dave Chinner for the reviews. Version 3: fixing wrapped patch. Signed-off-by: Koen De Wit <koen.de.wit@oracle.com> --- tests/btrfs/316 | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++ tests/btrfs/316.out | 39 +++++++++++++++ tests/btrfs/group | 1 + 3 files changed, 170 insertions(+), 0 deletions(-) create mode 100755 tests/btrfs/316 create mode 100644 tests/btrfs/316.out diff --git a/tests/btrfs/316 b/tests/btrfs/316 new file mode 100755 index 0000000..7c9c368 --- /dev/null +++ b/tests/btrfs/316 @@ -0,0 +1,130 @@ +#! /bin/bash +# FS QA Test No. btrfs/316 +# +# Testing cross-subvolume sparse copy on btrfs +# - Create two subvolumes, mount one of them +# - Create a file on each (sub/root)volume, +# reflink them on the other volumes +# - Change one original and two reflinked files +# - Move reflinked files between subvolumes +# +#----------------------------------------------------------------------- +# Copyright (c) 2013, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + umount $SCRATCH_MNT + rm -rf $TESTDIR1 + rm -rf $TESTDIR2 + btrfs subvolume delete $SUBVOL1 >> $seqres.full + btrfs subvolume delete $SUBVOL2 >> $seqres.full + cd / + rm -f $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +# real QA test starts here +_supported_fs btrfs +_supported_os Linux + +_require_scratch +_require_cp_reflink + +_checksum_files() { + for F in file1 file2 file3 + do + for D in $TESTDIR1 $SCRATCH_MNT $SUBVOL2 + do + md5sum $D/$F | _filter_test_dir | _filter_scratch + done + done +} + +TESTDIR1=$TEST_DIR/test-$seq-1 +TESTDIR2=$TEST_DIR/test-$seq-2 +SUBVOL1=$TEST_DIR/subvol-$seq-1 +SUBVOL2=$TEST_DIR/subvol-$seq-2 + +_scratch_unmount 2>/dev/null +rm -rf $seqres.full +rm -rf $TESTDIR1 $TESTDIR2 +btrfs subvol delete $SUBVOL1 >/dev/null 2>&1 +btrfs subvol delete $SUBVOL2 >/dev/null 2>&1 + +mkdir $TESTDIR1 +mkdir $TESTDIR2 +btrfs subvolume create $SUBVOL1 >> $seqres.full +btrfs subvolume create $SUBVOL2 >> $seqres.full +_mount -t btrfs -o subvol=subvol-$seq-1 $TEST_DEV $SCRATCH_MNT + +echo "Create initial files" +# TESTDIR1/file1 is very small and will be inlined +$XFS_IO_PROG -f -c ''pwrite -S 0x61 0 10'' $TESTDIR1/file1 >> $seqres.full +$XFS_IO_PROG -f -c ''pwrite -S 0x62 0 13000'' $SCRATCH_MNT/file2 >> $seqres.full +$XFS_IO_PROG -f -c ''pwrite -S 0x63 0 17000'' $SUBVOL2/file3 >> $seqres.full + +echo "Create reflinks to the initial files on other subvolumes" +cp --reflink $TESTDIR1/file1 $SUBVOL1 +cp --reflink $TESTDIR1/file1 $SUBVOL2 +cp --reflink $SUBVOL1/file2 $TESTDIR1/ +cp --reflink $SUBVOL1/file2 $SUBVOL2 +cp --reflink $SUBVOL2/file3 $TESTDIR1/ +cp --reflink $SUBVOL2/file3 $SUBVOL1 + +echo "Verify the reflinks" +_verify_reflink $SCRATCH_MNT/file2 $TESTDIR1/file2 +_verify_reflink $SCRATCH_MNT/file2 $SUBVOL2/file2 +_verify_reflink $SUBVOL2/file3 $TESTDIR1/file3 +_verify_reflink $SUBVOL2/file3 $SCRATCH_MNT/file3 +echo "Verify the file contents:" +_checksum_files + +echo -e "---\nOverwrite some files with new content" +$XFS_IO_PROG -c ''pwrite -S 0x64 0 20'' $TESTDIR1/file1 >> $seqres.full +$XFS_IO_PROG -c ''pwrite -S 0x66 0 21000'' $SUBVOL2/file2 >> $seqres.full +$XFS_IO_PROG -c ''pwrite -S 0x65 5000 5000'' $SCRATCH_MNT/file3 >> $seqres.full + +echo "Verify that non-overwritten reflinks still have the same data blocks" +_verify_reflink $TESTDIR1/file2 $SCRATCH_MNT/file2 +_verify_reflink $TESTDIR1/file3 $SUBVOL2/file3 +echo "Verify the file contents:" +_checksum_files + +echo -e "---\nShuffle files between directories" +mv $TESTDIR1/file* $TESTDIR2 +mv $SCRATCH_MNT/file* $TESTDIR1/ +mv $SUBVOL2/file* $SCRATCH_MNT/ +mv $TESTDIR2/file* $SUBVOL2/ + +# No _verify_reflink here as data is copied when moving files between subvols +echo "Verify the file contents:" +_checksum_files + +# success, all done +status=0 +exit diff --git a/tests/btrfs/316.out b/tests/btrfs/316.out new file mode 100644 index 0000000..fbfa550 --- /dev/null +++ b/tests/btrfs/316.out @@ -0,0 +1,39 @@ +QA output created by 316 +Create initial files +Create reflinks to the initial files on other subvolumes +Verify the reflinks +Verify the file contents: +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/test-302-1/file1 +e09c80c42fda55f9d992e59ca6b3307d SCRATCH_MNT/file1 +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/subvol-302-2/file1 +d7402b46310fbbfbc5e466b1dccb043b TEST_DIR/test-302-1/file2 +d7402b46310fbbfbc5e466b1dccb043b SCRATCH_MNT/file2 +d7402b46310fbbfbc5e466b1dccb043b TEST_DIR/subvol-302-2/file2 +5a95800e4c04b11117aa4e4de057721f TEST_DIR/test-302-1/file3 +5a95800e4c04b11117aa4e4de057721f SCRATCH_MNT/file3 +5a95800e4c04b11117aa4e4de057721f TEST_DIR/subvol-302-2/file3 +--- +Overwrite some files with new content +Verify that non-overwritten reflinks still have the same data blocks +Verify the file contents: +00d620f69f30327f0f8946b95c12de44 TEST_DIR/test-302-1/file1 +e09c80c42fda55f9d992e59ca6b3307d SCRATCH_MNT/file1 +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/subvol-302-2/file1 +d7402b46310fbbfbc5e466b1dccb043b TEST_DIR/test-302-1/file2 +d7402b46310fbbfbc5e466b1dccb043b SCRATCH_MNT/file2 +917619ae44b38bb9968af261c3c45440 TEST_DIR/subvol-302-2/file2 +5a95800e4c04b11117aa4e4de057721f TEST_DIR/test-302-1/file3 +b9f275cd638cb784c9e61def94c622a8 SCRATCH_MNT/file3 +5a95800e4c04b11117aa4e4de057721f TEST_DIR/subvol-302-2/file3 +--- +Shuffle files between directories +Verify the file contents: +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/test-302-1/file1 +e09c80c42fda55f9d992e59ca6b3307d SCRATCH_MNT/file1 +00d620f69f30327f0f8946b95c12de44 TEST_DIR/subvol-302-2/file1 +d7402b46310fbbfbc5e466b1dccb043b TEST_DIR/test-302-1/file2 +917619ae44b38bb9968af261c3c45440 SCRATCH_MNT/file2 +d7402b46310fbbfbc5e466b1dccb043b TEST_DIR/subvol-302-2/file2 +b9f275cd638cb784c9e61def94c622a8 TEST_DIR/test-302-1/file3 +5a95800e4c04b11117aa4e4de057721f SCRATCH_MNT/file3 +5a95800e4c04b11117aa4e4de057721f TEST_DIR/subvol-302-2/file3 diff --git a/tests/btrfs/group b/tests/btrfs/group index bc6c256..a6d8de1 100644 --- a/tests/btrfs/group +++ b/tests/btrfs/group @@ -9,3 +9,4 @@ 276 auto rw metadata 284 auto 307 auto quick +316 auto quick -- 1.7.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Dave Chinner
2013-Jul-02 10:15 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
On Tue, Jul 02, 2013 at 11:27:51AM +0200, Koen De Wit wrote:> This testscript creates reflinks to files on different subvolumes, overwrites the original files and reflinks, and moves reflinked files between subvolumes. > > Originally submitted as testcase 302, changes are made based on comments from Eric: http://oss.sgi.com/archives/xfs/2013-03/msg00231.html > Two new common/rc functions used in this script (_require_cp_reflink and _verify_reflink) have been submitted recently: http://oss.sgi.com/archives/xfs/2013-05/msg00745.html > Thanks to Eric Sandeen and Dave Chinner for the reviews. > > Version 3: fixing wrapped patch.Needs a proper commit message - wrap it at 72 columns, change log should be placed below the --- devider, not be part of hte commit message. Test numbers do not need to be unique across all test directories, just unique within the tests/btrfs directory.> + > +_checksum_files() { > + for F in file1 file2 file3 > + do > + for D in $TESTDIR1 $SCRATCH_MNT $SUBVOL2 > + do > + md5sum $D/$F | _filter_test_dir | _filter_scratchJust cut the file name out. No need for filtering at that point...> + done > + done > +} > + > +TESTDIR1=$TEST_DIR/test-$seq-1 > +TESTDIR2=$TEST_DIR/test-$seq-2 > +SUBVOL1=$TEST_DIR/subvol-$seq-1 > +SUBVOL2=$TEST_DIR/subvol-$seq-2....-316-.....> +Verify the file contents: > +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/test-302-1/file1which means the golden output is broken, despite the filtering You should test your patches before posting ;) FWIW, this is why you should simply cut the filename completely out like we do elsewhere.... Cheers, Dave. -- Dave Chinner david@fromorbit.com -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Koen De Wit
2013-Jul-02 14:27 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
Dave, Thanks for the review. I will clean up the commit message and do a full mail-to-myself-and-test-patch round trip to avoid errors like the wrong test numbers in the golden output. I''m sorry for this. About cutting out file names from the output. I did this in the first version of the patch: md5sum $TESTDIR1/$F | $AWK_PROG ''END {print $1}'' but Eric Sandeen suggested to include them in order to provide more context in the output. (See http://oss.sgi.com/archives/xfs/2013-03/msg00231.html and http://oss.sgi.com/archives/xfs/2013-03/msg00220.html) That sounds like a good idea to me, it makes debugging failures easier. Whose opinion should I follow? Koen. On 07/02/2013 12:15 PM, Dave Chinner wrote:> On Tue, Jul 02, 2013 at 11:27:51AM +0200, Koen De Wit wrote: >> This testscript creates reflinks to files on different subvolumes, overwrites the original files and reflinks, and moves reflinked files between subvolumes. >> >> Originally submitted as testcase 302, changes are made based on comments from Eric: http://oss.sgi.com/archives/xfs/2013-03/msg00231.html >> Two new common/rc functions used in this script (_require_cp_reflink and _verify_reflink) have been submitted recently: http://oss.sgi.com/archives/xfs/2013-05/msg00745.html >> Thanks to Eric Sandeen and Dave Chinner for the reviews. >> >> Version 3: fixing wrapped patch. > > Needs a proper commit message - wrap it at 72 columns, change log > should be placed below the --- devider, not be part of hte commit > message. > > Test numbers do not need to be unique across all test directories, > just unique within the tests/btrfs directory. > >> + >> +_checksum_files() { >> + for F in file1 file2 file3 >> + do >> + for D in $TESTDIR1 $SCRATCH_MNT $SUBVOL2 >> + do >> + md5sum $D/$F | _filter_test_dir | _filter_scratch > > Just cut the file name out. No need for filtering at that point... > >> + done >> + done >> +} >> + >> +TESTDIR1=$TEST_DIR/test-$seq-1 >> +TESTDIR2=$TEST_DIR/test-$seq-2 >> +SUBVOL1=$TEST_DIR/subvol-$seq-1 >> +SUBVOL2=$TEST_DIR/subvol-$seq-2 > > ....-316-..... > >> +Verify the file contents: >> +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/test-302-1/file1 > > which means the golden output is broken, despite the filtering > > You should test your patches before posting ;) > > FWIW, this is why you should simply cut the filename completely out > like we do elsewhere.... > > Cheers, > > Dave.-- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Eric Sandeen
2013-Jul-02 15:51 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
On Jul 2, 2013, at 10:28 AM, Koen De Wit <koen.de.wit@oracle.com> wrote:> Dave, > > Thanks for the review. I will clean up the commit message and do a full mail-to-myself-and-test-patch round trip to avoid errors like the wrong test numbers in the golden output. I''m sorry for this. > > About cutting out file names from the output. I did this in the first version of the patch: > > md5sum $TESTDIR1/$F | $AWK_PROG ''END {print $1}'' > > but Eric Sandeen suggested to include them in order to provide more context in the output. (See http://oss.sgi.com/archives/xfs/2013-03/msg00231.html and http://oss.sgi.com/archives/xfs/2013-03/msg00220.html) That sounds like a good idea to me, it makes debugging failures easier. Whose opinion should I follow? >Heh sorry. IMHO maybe a middle ground; not bare md5sum but show only the base name? In the end up to you; it seems Dave and I have different opinions on this. :) Eric> Koen. > > > On 07/02/2013 12:15 PM, Dave Chinner wrote: > >> On Tue, Jul 02, 2013 at 11:27:51AM +0200, Koen De Wit wrote: >>> This testscript creates reflinks to files on different subvolumes, overwrites the original files and reflinks, and moves reflinked files between subvolumes. >>> >>> Originally submitted as testcase 302, changes are made based on comments from Eric: http://oss.sgi.com/archives/xfs/2013-03/msg00231.html >>> Two new common/rc functions used in this script (_require_cp_reflink and _verify_reflink) have been submitted recently: http://oss.sgi.com/archives/xfs/2013-05/msg00745.html >>> Thanks to Eric Sandeen and Dave Chinner for the reviews. >>> >>> Version 3: fixing wrapped patch. >> >> Needs a proper commit message - wrap it at 72 columns, change log >> should be placed below the --- devider, not be part of hte commit >> message. >> >> Test numbers do not need to be unique across all test directories, >> just unique within the tests/btrfs directory. >> >>> + >>> +_checksum_files() { >>> + for F in file1 file2 file3 >>> + do >>> + for D in $TESTDIR1 $SCRATCH_MNT $SUBVOL2 >>> + do >>> + md5sum $D/$F | _filter_test_dir | _filter_scratch >> >> Just cut the file name out. No need for filtering at that point... >> >>> + done >>> + done >>> +} >>> + >>> +TESTDIR1=$TEST_DIR/test-$seq-1 >>> +TESTDIR2=$TEST_DIR/test-$seq-2 >>> +SUBVOL1=$TEST_DIR/subvol-$seq-1 >>> +SUBVOL2=$TEST_DIR/subvol-$seq-2 >> >> ....-316-..... >> >>> +Verify the file contents: >>> +e09c80c42fda55f9d992e59ca6b3307d TEST_DIR/test-302-1/file1 >> >> which means the golden output is broken, despite the filtering >> >> You should test your patches before posting ;) >> >> FWIW, this is why you should simply cut the filename completely out >> like we do elsewhere.... >> >> Cheers, >> >> Dave. > >-- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Dave Chinner
2013-Jul-03 06:37 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
On Tue, Jul 02, 2013 at 11:51:21AM -0400, Eric Sandeen wrote:> On Jul 2, 2013, at 10:28 AM, Koen De Wit <koen.de.wit@oracle.com> > wrote: > > > Dave, > > > > Thanks for the review. I will clean up the commit message and do > > a full mail-to-myself-and-test-patch round trip to avoid errors > > like the wrong test numbers in the golden output. I''m sorry for > > this. > > > > About cutting out file names from the output. I did this in the > > first version of the patch: > > > > md5sum $TESTDIR1/$F | $AWK_PROG ''END {print $1}'' > > > > but Eric Sandeen suggested to include them in order to provide > > more context in the output. (See > > http://oss.sgi.com/archives/xfs/2013-03/msg00231.html and > > http://oss.sgi.com/archives/xfs/2013-03/msg00220.html) That > > sounds like a good idea to me, it makes debugging failures > > easier. Whose opinion should I follow? > > > Heh sorry. IMHO maybe a middle ground; not bare md5sum but show > only the base name? In the end up to you; it seems Dave and I > have different opinions on this. :)I was just going by current xfstests convention. i.e, in common/rc: # Prints the md5 checksum of a given file _md5_checksum() { md5sum $1 | cut -d '' '' -f1 } Which is used by all the hole punch tests and generic/311. Make of that what you will, but I''d prefer to see consistency of implementation across tests... ;) Cheers, Dave. -- Dave Chinner david@fromorbit.com _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs
Koen De Wit
2013-Jul-03 10:02 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
On 07/03/2013 08:37 AM, Dave Chinner wrote:> On Tue, Jul 02, 2013 at 11:51:21AM -0400, Eric Sandeen wrote: >> On Jul 2, 2013, at 10:28 AM, Koen De Wit <koen.de.wit@oracle.com> >> wrote: >> >>> Dave, >>> >>> Thanks for the review. I will clean up the commit message and do >>> a full mail-to-myself-and-test-patch round trip to avoid errors >>> like the wrong test numbers in the golden output. I''m sorry for >>> this. >>> >>> About cutting out file names from the output. I did this in the >>> first version of the patch: >>> >>> md5sum $TESTDIR1/$F | $AWK_PROG ''END {print $1}'' >>> >>> but Eric Sandeen suggested to include them in order to provide >>> more context in the output. (See >>> http://oss.sgi.com/archives/xfs/2013-03/msg00231.html and >>> http://oss.sgi.com/archives/xfs/2013-03/msg00220.html) That >>> sounds like a good idea to me, it makes debugging failures >>> easier. Whose opinion should I follow? >>> >> Heh sorry. IMHO maybe a middle ground; not bare md5sum but show >> only the base name? In the end up to you; it seems Dave and I >> have different opinions on this. :) > > I was just going by current xfstests convention. i.e, in common/rc: > > # Prints the md5 checksum of a given file > _md5_checksum() > { > md5sum $1 | cut -d '' '' -f1 > } > > Which is used by all the hole punch tests and generic/311.That''s true, but these tests generate other context information in the output. They don''t just print a bunch of checksums. For example, the output of generic/255 looks like: 1. into a hole daa100df6e6711906b61c9ab5aa16032 2. into allocated space 0: [0..7]: extent 1: [8..23]: hole 2: [24..39]: extent cc58a7417c2d7763adc45b6fcd3fa024 3. into unwritten space 0: [0..7]: extent 1: [8..23]: hole 2: [24..39]: extent daa100df6e6711906b61c9ab5aa16032 (...) The output of generic/311 looks like: Running test 1 buffered, normal suspend Random seed is 1 ee6103415276cde95544b11b2675f132 ee6103415276cde95544b11b2675f132 Running test 1 direct, normal suspend Random seed is 1 ee6103415276cde95544b11b2675f132 ee6103415276cde95544b11b2675f132 (...)> Make of that what you will, but I''d prefer to see consistency of > implementation across tests... ;)Do I agree if I change _checksum_files() to: _checksum_files() { for F in file1 file2 file3 do echo "$F:" for D in $TESTDIR1 $SCRATCH_MNT $SUBVOL2 do _md5_checksum $D/$F done done } It produces this in the output: (...) file1: 00d620f69f30327f0f8946b95c12de44 e09c80c42fda55f9d992e59ca6b3307d e09c80c42fda55f9d992e59ca6b3307d file2: d7402b46310fbbfbc5e466b1dccb043b d7402b46310fbbfbc5e466b1dccb043b 917619ae44b38bb9968af261c3c45440 file3: 5a95800e4c04b11117aa4e4de057721f b9f275cd638cb784c9e61def94c622a8 5a95800e4c04b11117aa4e4de057721f (...) Thanks, Koen. -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Dave Chinner
2013-Jul-03 10:17 UTC
Re: [PATCH v3] xfstests: btrfs/316: cross-subvolume sparse copy
On Wed, Jul 03, 2013 at 12:02:52PM +0200, Koen De Wit wrote:> On 07/03/2013 08:37 AM, Dave Chinner wrote: > > > On Tue, Jul 02, 2013 at 11:51:21AM -0400, Eric Sandeen wrote: > >> On Jul 2, 2013, at 10:28 AM, Koen De Wit <koen.de.wit@oracle.com> > >> wrote: > >> > >>> Dave, > >>> > >>> Thanks for the review. I will clean up the commit message and do > >>> a full mail-to-myself-and-test-patch round trip to avoid errors > >>> like the wrong test numbers in the golden output. I''m sorry for > >>> this. > >>> > >>> About cutting out file names from the output. I did this in the > >>> first version of the patch: > >>> > >>> md5sum $TESTDIR1/$F | $AWK_PROG ''END {print $1}'' > >>> > >>> but Eric Sandeen suggested to include them in order to provide > >>> more context in the output. (See > >>> http://oss.sgi.com/archives/xfs/2013-03/msg00231.html and > >>> http://oss.sgi.com/archives/xfs/2013-03/msg00220.html) That > >>> sounds like a good idea to me, it makes debugging failures > >>> easier. Whose opinion should I follow? > >>> > >> Heh sorry. IMHO maybe a middle ground; not bare md5sum but show > >> only the base name? In the end up to you; it seems Dave and I > >> have different opinions on this. :) > > > > I was just going by current xfstests convention. i.e, in common/rc: > > > > # Prints the md5 checksum of a given file > > _md5_checksum() > > { > > md5sum $1 | cut -d '' '' -f1 > > } > > > > Which is used by all the hole punch tests and generic/311. > > > That''s true, but these tests generate other context information in the > output. They don''t just print a bunch of checksums.Sure, but it''s pretty trivial to work out which sum in output belongs to which file in this test - there''s only a handful of them.> (...) > file1: > 00d620f69f30327f0f8946b95c12de44 > e09c80c42fda55f9d992e59ca6b3307d > e09c80c42fda55f9d992e59ca6b3307dThat''s fine. Cheers, Dave, -- Dave Chinner david@fromorbit.com -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Reasonably Related Threads
- [PATCH v2] xfstests: btrfs/316: cross-subvolume sparse copy
- [PATCH 1/2] xfstests: add generic/321 to test fsync() on directories V2
- [PATCH] xfstests: add generic/320 to test fsync() on directories V2
- Samba4 issue: roaming profile mismatch betweens W2k/XP machines due to enabled o
- [kvm-unit-tests PATCH] x86: hyperv_synic: Hyper-V SynIC test