Fix the difflink test
[tar.git] / tests / sparsemvp.at
blob2752bc89bd3b8ee5b62c9604b6732d164c660008
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2005-2009, 2013-2014, 2016-2017 Free Software Foundation,
5 # Inc.
7 # This file is part of GNU tar.
9 # GNU tar is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # GNU tar is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 # Check if sparse files are correctly split between PAX multi-volume
23 # archives.
24 # See comment in sparsemv.at for the description.
26 dnl TAR_MVP_TEST version map1 map2
27 m4_define([TAR_MVP_TEST],[
28 AT_TAR_CHECK([
29 exec <&-
30 TAR_OPTIONS="$TAR_OPTIONS --hole-detection=raw"
31 genfile --sparse --file sparsefile $2 || AT_SKIP_TEST
32 echo "Pass 1: Split between data blocks"
33 echo "Create archive"
34 tar --sparse --sparse-version=$1 -c --record-size=512 -M -L6 -f arc.1 -f arc.2 -f arc.3 sparsefile
35 echo "Test archive"
36 tar -t -M -f arc.1 -f arc.2 -f arc.3
37 echo "Compare archive"
38 tar -d -M -f arc.1 -f arc.2 -f arc.3
40 echo "Pass 2: Split within a data block"
41 genfile --sparse --file sparsefile $3 || AT_SKIP_TEST
42 echo "Create archive"
43 tar --sparse --sparse-version=$1 -c --record-size=512 -M -L6 -f arc.1 -f arc.2 -f arc.3 sparsefile
44 echo "Test archive"
45 tar -t -M -f arc.1 -f arc.2 -f arc.3
46 echo "Compare archive"
47 tar -d -M -f arc.1 -f arc.2 -f arc.3
49 [0],
50 [Pass 1: Split between data blocks
51 Create archive
52 Test archive
53 sparsefile
54 Compare archive
55 Pass 2: Split within a data block
56 Create archive
57 Test archive
58 sparsefile
59 Compare archive
61 [],[],[],[pax])])