re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / incr03.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2006-2007, 2009, 2013-2014, 2016 Free Software Foundation,
5 # Inc.
6
7 # This file is part of GNU tar.
8
9 # GNU tar is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU tar is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 # Description:
23 # Previous versions checked only mtime/ctime of directories during
24 # incremental backups.  As a result, it sufficed to rename a single file
25 # to get full dump of the directory where it resided.  Since v.1.15.91
26 # tar checks directory contents as well, so in this case only the renamed
27 # file is dumped.
28
29 AT_SETUP([renamed files in incrementals])
30 AT_KEYWORDS([incremental incr03 rename])
31
32 AT_TAR_CHECK([
33 AT_CHECK_TIMESTAMP
34 AT_SORT_PREREQ
35 mkdir directory
36 genfile --file=directory/x
37 genfile --file=directory/y
38
39 sleep 1
40
41 tar -cf archive.1 -g db directory
42
43 mv directory/x directory/z
44 cp db db.old
45 tar -cf archive.2 -g db directory
46
47 mv directory orig
48
49 echo Listing of archive.1
50 tar -tf archive.1 | sort
51 echo Listing of archive.2
52 tar -tf archive.2 | sort
53
54 echo Directory after first restore
55 tar -xf archive.1 -g db --warning=no-timestamp
56 find directory | sort
57
58 echo Directory after second restore
59 tar -xf archive.2 -g db --warning=no-timestamp
60 find directory | sort
61 ],
62 [0],
63 [Listing of archive.1
64 directory/
65 directory/x
66 directory/y
67 Listing of archive.2
68 directory/
69 directory/z
70 Directory after first restore
71 directory
72 directory/x
73 directory/y
74 Directory after second restore
75 directory
76 directory/y
77 directory/z
78 ],[],[],[],[gnu, oldgnu, posix])
79
80 AT_CLEANUP
81
82 # End of incr03.at