]> git.cworth.org Git - tar/blob - tests/multiv08.at
Imported Upstream version 1.24
[tar] / tests / multiv08.at
1 # Test suite for GNU tar.                             -*- Autotest -*-
2 # Copyright (C) 2010 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Description: Tar 1.23 would in some cases silently fail to create
18 # a continuation header in multivolume archives.
19 #
20 # In this testcase, the file `a' is 18.5 blocks long and the file `b'
21 # is 19.5 blocks long.
22
23 AT_SETUP([multivolume header creation])
24 AT_KEYWORDS([multivolume multiv multiv08])
25
26 AT_TAR_CHECK([
27 genfile --length 9472 --file a
28 genfile --length 9984 --file b
29 decho Creating
30 tar -c -M -L10 -f A.tar -f B.tar -f C.tar a b
31 decho Testing
32 tar -tMR -f A.tar -f B.tar -f C.tar
33 ],
34 [0],
35 [Creating
36 Testing
37 block 0: a
38 block 21: b
39 block 43: ** Block of NULs **
40 ],
41 [Creating
42 Testing
43 ],
44 [],
45 [],
46 [gnu])
47
48 AT_CLEANUP