Fix the difflink test
[tar.git] / tests / listed01.at
blob62e561863ed4b312c8ccba4ee0934cb8e49a34b0
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2004-2007, 2009, 2013-2014, 2016-2017 Free Software
5 # Foundation, Inc.
7 # This file is part of GNU tar.
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.
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.
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/>.
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
27 AT_SETUP([--listed for individual files])
28 AT_KEYWORDS([listed incremental listed01])
30 AT_TAR_CHECK([
31 AT_CHECK_TIMESTAMP
33 mkdir directory
34 genfile --length 10240 --pattern zeros --file directory/file1
35 # Let the things settle
36 sleep 1
38 tar --create \
39     --file=archive.1 \
40     --listed-incremental=listing \
41     directory/file*
43 tar tf archive.1 || exit 1
45 sleep 2
47 genfile --length 10240 --pattern zeros --file directory/file2
49 echo "separator"
50 cp listing listing.old
51 tar --create \
52     --file=archive.2 \
53     --listed-incremental=listing \
54     directory/file* || exit 1
56 tar tf archive.2 || exit 1
58 [0],
59 [directory/file1
60 separator
61 directory/file2
63 [],[],[],[gnu, oldgnu])
65 AT_CLEANUP