]> Dogcows Code - chaz/tar/blob - tests/incr10.at
Fix extraction from concatenated incremental archives.
[chaz/tar] / tests / incr10.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2015 Free Software Foundation, Inc.
4 #
5 # GNU tar is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # GNU tar is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 AT_SETUP([concatenated incremental archives])
19 AT_KEYWORDS([incremental concat cat incr10])
20
21 # Description: Extraction from concatenated incremental archives
22 # produced spurious error messages when trying to set file ownership
23 # and permissions on deleted directories.
24 # Reported by: Alex Efros <powerman@powerman.name>
25 # References: <20150411224008.GO24600@home.power>
26 # http://lists.gnu.org/archive/html/bug-tar/2015-04/msg00003.html
27
28 AT_TAR_CHECK([
29 mkdir in
30 mkdir in/dir
31 decho Level 0
32 tar -cvf 1.tar -g snap -C in .
33 rmdir in/dir
34 decho Level 1
35 tar -cvf 2.tar -g snap -C in .
36 cp 1.tar full.tar
37 decho Concat
38 tar -A 2.tar -f full.tar -g /dev/null
39 decho Extract
40 mkdir out
41 tar -xvf full.tar -g /dev/null -C out
42 ],
43 [0],
44 [Level 0
45 ./
46 ./dir/
47 Level 1
48 ./
49 Concat
50 Extract
51 ./
52 ./dir/
53 ./
54 tar: Deleting './dir'
55 ],
56 [Level 0
57 tar: .: Directory is new
58 tar: ./dir: Directory is new
59 Level 1
60 Concat
61 Extract
62 ],[],[],[gnu])
63
64 AT_CLEANUP
This page took 0.034294 seconds and 4 git commands to generate.