Changes in extended header decoder
[tar.git] / tests / incr01.at
blob3d02e08501ee3eca646b9872a59e5bda7dc80b4f
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2005-2023 Free Software Foundation, Inc.
6 # This file is part of GNU tar.
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.
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.
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/>.
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
27 AT_SETUP([restore broken symlinks from incremental])
28 AT_KEYWORDS([incremental incr01])
30 AT_TAR_CHECK([
31 AT_CHECK_TIMESTAMP
33 mkdir directory
34 $as_ln_s foo directory/bar
36 tar -cf archive.0 -g db directory
37 rm directory/bar
38 tar -cf archive.1 -g db directory
40 mv directory orig
42 tar xvfg archive.0 /dev/null --warning=no-timestamp
43 echo separator
44 tar xvfg archive.1 /dev/null --warning=no-timestamp
46 [0],
47 [directory/
48 directory/bar
49 separator
50 directory/
51 tar: Deleting 'directory/bar'
53 [],[],[],[gnu, oldgnu, posix])
55 AT_CLEANUP