generic/402: Drop useless fail message
[xfstests-dev.git] / tests / generic / 181
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 181
6 #
7 # Test the convention that reflink with length == 0 means "to the end of fileA"
8 #   - Create a file.
9 #   - Try to reflink "zero" bytes.
10 #   - Check that the reflink happened.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1    # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 _cleanup()
22 {
23     cd /
24     rm -rf $tmp.* $testdir
25 }
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30 . ./common/reflink
31
32 # real QA test starts here
33 _require_test_reflink
34 _require_cp_reflink
35
36 rm -f $seqres.full
37
38 testdir=$TEST_DIR/test-$seq
39 rm -rf $testdir
40 mkdir $testdir
41
42 echo "Create the original files"
43 blksz=65536
44 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file1 >> $seqres.full
45 _pwrite_byte 0x62 0 $((blksz * 256)) $testdir/file2 >> $seqres.full
46 _pwrite_byte 0x62 0 $((blksz * 2)) $testdir/file2.chk >> $seqres.full
47 _pwrite_byte 0x61 $((blksz * 2)) $((blksz * 255)) $testdir/file2.chk >> $seqres.full
48 _reflink_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) 0 >> $seqres.full
49 _test_cycle_mount
50
51 md5sum $testdir/file1 | _filter_test_dir
52 md5sum $testdir/file2 | _filter_test_dir
53 md5sum $testdir/file2.chk | _filter_test_dir
54
55 c1=$(_md5_checksum $testdir/file1)
56 c2=$(_md5_checksum $testdir/file2)
57
58 test ${c1} != ${c2} || echo "file1 and file2 should not match"
59
60 echo "Compare against check files"
61 cmp -s $testdir/file2 $testdir/file2.chk || echo "file2 and file2.chk do not match"
62
63 # success, all done
64 status=0
65 exit