re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / incr01.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2005, 2007, 2013-2014, 2016 Free Software Foundation, Inc.
5
6 # This file is part of GNU tar.
7
8 # GNU tar is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12
13 # GNU tar is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 # Description:
22 # Check if restore from incremental backups does not choke on dangling
23 # symlinks.
24 # References: <20050821163500.2772914828A@blake.inputplus.co.uk>
25 # http://lists.gnu.org/archive/html/bug-tar/2005-08/msg00023.html
26
27 AT_SETUP([restore broken symlinks from incremental])
28 AT_KEYWORDS([incremental incr01])
29
30 AT_TAR_CHECK([
31 AT_CHECK_TIMESTAMP
32
33 mkdir directory
34 $as_ln_s foo directory/bar
35
36 tar -cf archive.0 -g db directory
37 rm directory/bar
38 tar -cf archive.1 -g db directory
39
40 mv directory orig
41
42 tar xvfg archive.0 /dev/null --warning=no-timestamp
43 echo separator
44 tar xvfg archive.1 /dev/null --warning=no-timestamp
45 ],
46 [0],
47 [directory/
48 directory/bar
49 separator
50 directory/
51 tar: Deleting 'directory/bar'
52 ],
53 [],[],[],[gnu, oldgnu, posix])
54
55 AT_CLEANUP