]> Dogcows Code - chaz/tar/blob - tests/sparsemv.at
Add new test cases
[chaz/tar] / tests / sparsemv.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2005 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 AT_SETUP([Sparse files in MV archives])
22 AT_KEYWORDS([sparse multiv sparsemv])
23
24 # Check if sparse files are correctly split between GNU multi-volume
25 # archives.
26 # There are two cases: the file can be split within an empty (null) block,
27 # or within a data block. Since null blocks are not archived, the first
28 # case means the file is split between two consecutive data blocks.
29 #
30
31 AT_TAR_CHECK([
32 genfile --sparse --file sparsefile 0 ABCDEFGHIJ 1M ABCDEFGHI || AT_SKIP_TEST
33 echo "Pass 1: Split between data blocks"
34 echo "Create archive"
35 tar --sparse -c --record-size=512 -M -L6 -f arc.1 -f arc.2 sparsefile || exit 1
36 echo "Test archive"
37 tar -t -M -f arc.1 -f arc.2
38 echo "Compare archive"
39 tar -d -M -f arc.1 -f arc.2
40
41 echo "Pass 2: Split within a data block"
42 genfile --sparse --file sparsefile 0 ABCDEFGHIJK 1M ABCDEFGH || AT_SKIP_TEST
43 echo "Create archive"
44 tar --sparse -c --record-size=512 -M -L6 -f arc.1 -f arc.2 sparsefile || exit 1
45 echo "Test archive"
46 tar -t -M -f arc.1 -f arc.2
47 echo "Compare archive"
48 tar -d -M -f arc.1 -f arc.2
49 ],
50 [0],
51 [Pass 1: Split between data blocks
52 Create archive
53 Test archive
54 sparsefile
55 Compare archive
56 Pass 2: Split within a data block
57 Create archive
58 Test archive
59 sparsefile
60 Compare archive
61 ],
62 [],[],[],[gnu, oldgnu])
63
64 AT_CLEANUP
This page took 0.040242 seconds and 5 git commands to generate.