re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / incr10.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2015-2016 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 (deletes)])
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 AT_CHECK_TIMESTAMP
30 mkdir in
31 mkdir in/dir
32 decho Level 0
33 tar -cvf 1.tar -g snap -C in .
34 rmdir in/dir 
35 decho Level 1
36 tar -cvf 2.tar -g snap -C in .
37 cp 1.tar full.tar 
38 decho Concat
39 tar -A 2.tar -f full.tar -g /dev/null
40 decho Extract
41 mkdir out
42 tar -xvf full.tar -g /dev/null -C out
43 ],
44 [0],
45 [Level 0
46 ./
47 ./dir/
48 Level 1
49 ./
50 Concat
51 Extract
52 ./
53 ./dir/
54 ./
55 tar: Deleting './dir'
56 ],
57 [Level 0
58 tar: .: Directory is new
59 tar: ./dir: Directory is new
60 Level 1
61 Concat
62 Extract
63 ],[],[],[gnu])
64
65 AT_CLEANUP