1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright (C) 2004, 2005, 2006, 2007, 2009 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 echo >&2 "Creating main archive"
51 tar -c -v --listed-incremental=tart.incr1 -f archive.1 tart 2> err || exit 1
53 # The above prints two lines to stderr announcing the new directories c0 and c1.
54 # Ensure that they appear in this script's stderr in sorted order.
55 sort err 1>&2; rm -f err
58 echo Modifying filesystem
65 echo Directory contents
66 find tart -print | sort 2>/dev/null
69 echo Creating incremental archive
70 echo >&2 "Creating incremental archive"
71 cp -p tart.incr1 tart.incr2
72 tar -c -v --listed-incremental=tart.incr2 -f archive.2 tart || exit 1
77 echo Extracting main archive
78 echo >&2 "Extracting main archive"
79 tar -x -v --listed-incremental=tart.incr1 -f archive.1 || exit 1
80 echo Extracting incremental archive
81 # This command should produce three messages about deletion
82 # of the existing files, that may appear in any order. Piping
83 # to sort makes sure we don't depend on any particular ordering.
84 tar -x -v --listed-incremental=tart.incr2 -f archive.2 | sort 2>/dev/null
87 find tart -print | sort 2>/dev/null
112 Creating incremental archive
118 Extracting main archive
128 Extracting incremental archive
129 tar: Deleting 'tart/a1'
130 tar: Deleting 'tart/b1'
147 [Creating main archive
148 tar: tart/c0: Directory is new
149 tar: tart/c1: Directory is new
150 tar: tart: Directory is new
151 Creating incremental archive
152 tar: tart/c2: Directory has been renamed from 'tart/c1'
153 Extracting main archive