re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / extrac05.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2004, 2006-2007, 2013-2014, 2016 Free Software Foundation,
5 # Inc.
6
7 # This file is part of GNU tar.
8
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.
13
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.
18
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/>.
21
22 # Problem: when extracting selected members from a PAX archive,
23 # tar 1.14 incorrectly deemed all members to be sparse and
24 # therefore was not able to properly skip them.
25 #
26 # Reported by: Luca Fibbi <fibbi@lamma.rete.toscana.it>
27 #
28 # References: <3.0.6.32.20040809113727.00a30e50@localhost>
29 # http://lists.gnu.org/archive/html/bug-tar/2004-08/msg00008.html
30
31 AT_SETUP([extracting selected members from pax])
32 AT_KEYWORDS([extract extract05])
33
34 AT_DATA([list],
35 [jeden
36 cztery
37 ])
38
39 AT_TAR_CHECK([
40 genfile --sparse --file sparsefile 0 ABCD 1M EFGH 2000K IJKL || AT_SKIP_TEST
41 genfile --length 118 --file jeden
42 genfile --length 223 --file dwa
43 genfile --length 517 --file trzy
44 genfile --length 110 --file cztery
45
46 tar cf archive jeden dwa trzy cztery || exit 1
47
48 mkdir dir
49 cd dir
50
51 tar xvfT ../archive ../../list --warning=no-timestamp || exit 1
52
53 cd ..
54 ],
55 [0],
56 [jeden
57 cztery
58 ],
59 [],[],[],
60 [posix])
61
62 AT_CLEANUP