re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / listed01.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2004-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 # Check if listed-incremental backups work for individual files.
23 # Script proposed by Andreas Schuldei <andreas@schuldei.org>
24 # References: <20040215014223.GA9699@lukas.schuldei.com>
25 # http://lists.gnu.org/archive/html/bug-tar/2004-02/msg00011.html
26
27 AT_SETUP([--listed for individual files])
28 AT_KEYWORDS([listed incremental listed01])
29
30 AT_TAR_CHECK([
31 AT_CHECK_TIMESTAMP
32
33 mkdir directory
34 genfile --length 10240 --pattern zeros --file directory/file1
35 # Let the things settle
36 sleep 1
37
38 tar --create \
39     --file=archive.1 \
40     --listed-incremental=listing \
41     directory/file*
42
43 tar tf archive.1 || exit 1
44
45 sleep 2
46
47 genfile --length 10240 --pattern zeros --file directory/file2
48
49 echo "separator"
50 cp listing listing.old
51 tar --create \
52     --file=archive.2 \
53     --listed-incremental=listing \
54     directory/file* || exit 1
55
56 tar tf archive.2 || exit 1
57 ],
58 [0],
59 [directory/file1
60 separator
61 directory/file2
62 ],
63 [],[],[],[gnu, oldgnu])
64
65 AT_CLEANUP