]> Dogcows Code - chaz/tar/blob - tests/sparsemvp.at
Uniformly start all test titles with a lower case letter
[chaz/tar] / tests / sparsemvp.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 PAX MV archives])
22 AT_KEYWORDS([sparse multiv sparsemvp])
23
24 # Check if sparse files are correctly split between PAX multi-volume
25 # archives.
26 # See comment in sparsemv.at for the description.
27
28 AT_TAR_CHECK([
29 exec <&-
30 genfile --sparse --file sparsefile 0 ABCDEFGHIJK 1M ABCDEFGHI || AT_SKIP_TEST
31 echo "Pass 1: Split between data blocks"
32 echo "Create archive"
33 tar --sparse -c --record-size=512 -M -L7 -f arc.1 -f arc.2 -f arc.3 sparsefile
34 echo "Test archive"
35 tar -t -M -f arc.1 -f arc.2 -f arc.3
36 echo "Compare archive"
37 tar -d -M -f arc.1 -f arc.2 -f arc.3
38
39 echo "Pass 2: Split within a data block"
40 genfile --sparse --file sparsefile 0 ABCDEFGHIJKL 1M ABCDEFG || AT_SKIP_TEST
41 echo "Create archive"
42 tar --sparse -c --record-size=512 -M -L7 -f arc.1 -f arc.2 -f arc.3 sparsefile
43 echo "Test archive"
44 tar -t -M -f arc.1 -f arc.2 -f arc.3
45 echo "Compare archive"
46 tar -d -M -f arc.1 -f arc.2 -f arc.3
47 ],
48 [0],
49 [Pass 1: Split between data blocks
50 Create archive
51 Test archive
52 sparsefile
53 Compare archive
54 Pass 2: Split within a data block
55 Create archive
56 Test archive
57 sparsefile
58 Compare archive
59 ],
60 [],[],[],[pax])
61
62 AT_CLEANUP
This page took 0.039548 seconds and 5 git commands to generate.