re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / incr06.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2009, 2013-2014, 2016 Free Software Foundation, Inc.
5
6 # This file is part of GNU tar.
7
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.
12
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.
17
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/>.
20
21 AT_SETUP([incremental dumps of nested directories])
22 AT_KEYWORDS([incremental incr06])
23
24 AT_TAR_CHECK([
25 AT_CHECK_TIMESTAMP
26 mkdir dir
27 mkdir dir/sub
28 mkdir dir/sub/a
29 mkdir dir/sub/b
30 genfile --file dir/file1
31 genfile --file dir/sub/file2
32 genfile --file dir/sub/a/file3
33
34 echo Level 0 . sub
35 tar -c -f archive-0.1.tar -g db.1 -C dir -v --warning=no-new-dir . sub
36 echo Level 0 sub .
37 tar -c -f archive-0.2.tar -g db.2 -C dir -v --warning=no-new-dir sub .
38
39 mkdir dir/c
40 genfile --file dir/sub/b/file4
41
42 echo Level 1 . sub
43 tar -c -f archive-1.1.tar -g db.1 -C dir -v --warning=no-new-dir . sub
44 echo Level 1 sub .
45 tar -c -f archive-1.2.tar -g db.2 -C dir -v --warning=no-new-dir sub .
46 ],
47 [0],
48 [Level 0 . sub
49 ./
50 sub/
51 sub/a/
52 sub/b/
53 ./file1
54 sub/file2
55 sub/a/file3
56 Level 0 sub .
57 ./
58 sub/
59 sub/a/
60 sub/b/
61 ./file1
62 sub/file2
63 sub/a/file3
64 Level 1 . sub
65 ./
66 ./c/
67 sub/
68 sub/a/
69 sub/b/
70 sub/b/file4
71 Level 1 sub .
72 ./
73 ./c/
74 sub/
75 sub/a/
76 sub/b/
77 sub/b/file4
78 ],[],[],[],[gnu, oldgnu, posix])
79
80 AT_CLEANUP