1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright (C) 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 # Description: Incremental archives should be able to handle directories
22 # moved between directory hierarchies.
24 AT_SETUP([move between hierarchies])
25 AT_KEYWORDS([incremental rename rename02])
30 genfile --file foo/file1
31 genfile --file foo/file2
33 genfile --file foo/bar/file.r
35 genfile --file foo/bar/baz/file.z
39 echo "Creating base archive"
40 tar -g incr -cf arch.1 -v foo
44 echo "Creating incremental archive"
45 tar -g incr -cf arch.2 -v foo
49 tar xfg arch.1 /dev/null 2>tmperr
52 echo "Begin directory listing 1"
54 echo "End directory listing 1"
56 tar xfgv arch.2 /dev/null
57 echo Begin directory listing 2
59 echo End directory listing 2
62 [Creating base archive
70 Creating incremental archive
74 Begin directory listing 1
82 End directory listing 1
86 Begin directory listing 2
94 End directory listing 2
96 [tar: foo: Directory is new
97 tar: foo/bar: Directory is new
98 tar: foo/bar/baz: Directory is new
99 tar: foo/baz: Directory has been renamed from `foo/bar/baz'
101 [],[],[gnu, oldgnu, posix])