1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3, or (at your option)
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 # Check if listed-incremental backups work for files moved from one directory
23 # Based on a script by Martin Simmons <ZYHYLCRMZPRP@spammotel.com>
25 # <20040626230315.163AA1D148@cpc5-cmbg1-6-0-cust208.cmbg.cable.ntl.com>
26 # http://lists.gnu.org/archive/html/bug-tar/2004-06/msg00028.html
28 AT_SETUP([working --listed])
29 AT_KEYWORDS([listed incremental listed02])
33 echo Create directories
42 for file in tart/a1 tart/b1 tart/c0/cq1 tart/c0/cq2 tart/c1/ca1 tart/c1/ca2
44 echo File $file > $file
49 echo Creating main archive
50 tar -c -v --listed-incremental=tart.incr1 -f archive.1 tart 2> err || exit 1
52 # The above prints two lines to stderr announcing the new directories c0 and c1.
53 # Ensure that they appear in this script's stderr in sorted order.
54 sort err 1>&2; rm -f err
57 echo Modifying filesystem
64 echo Directory contents
65 find tart -print | sort 2>/dev/null
68 echo Creating incremental archive
69 cp -p tart.incr1 tart.incr2
70 tar -c -v --listed-incremental=tart.incr2 -f archive.2 tart || exit 1
75 echo Extracting main archive
76 tar -x -v --listed-incremental=tart.incr1 -f archive.1 || exit 1
77 echo Extracting incremental archive
78 # This command should produce three messages about deletion
79 # of the existing files, that may appear in any order. Piping
80 # to sort makes sure we don't depend on any particular ordering.
81 tar -x -v --listed-incremental=tart.incr2 -f archive.2 | sort 2>/dev/null
84 find tart -print | sort 2>/dev/null
109 Creating incremental archive
115 Extracting main archive
125 Extracting incremental archive
126 tar: Deleting `tart/a1'
127 tar: Deleting `tart/b1'
144 [tar: tart/c0: Directory is new
145 tar: tart/c1: Directory is new
146 tar: tart/c2: Directory has been renamed from `tart/c1'