]> Dogcows Code - chaz/tar/blob - tests/exclude09.at
Update copyright years.
[chaz/tar] / tests / exclude09.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 #
3 # Test suite for GNU tar.
4 # Copyright 2013-2014 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 # The --exclude-tag options interacted incorrectly with --listed-incremental
22 # since their very inception. The testcases exclude08 through exclude16
23 # verify that --exclude-tag operates consistently whether or not
24 # --listed-incremental option is given.
25 #
26 # This testcase verifies whether the --exclude-tag option works
27 # as expected whe used together with --listed-incremental, i.e. excludes
28 # the contents of the directory containing the tag, but preserves the
29 # directory and the tag itself.
30 #
31 # Reported-by: Nathan Stratton Treadway <nathanst+bugtar@ontko.com>
32 # Last-Affected-Version: 1.26
33 # References: <20120528140419.GT2654@shire.ontko.com>,
34 # <20130311210006.GA3732@shire.ontko.com>,
35 # http://lists.gnu.org/archive/html/bug-tar/2012-06/msg00013.html
36
37 AT_SETUP([--exclude-tag option and --listed-incremental])
38 AT_KEYWORDS([exclude exclude-tag listed incremental exclude09])
39
40 AT_TAR_CHECK([
41 AT_SORT_PREREQ
42 mkexcltest etest
43 tar -c -f etest.tar --exclude-tag=excludeme --listed=snar -v etest | sort
44 ],
45 [0],
46 [etest/
47 etest/subdir/
48 etest/subdir/excludeme
49 etest/top-level-file
50 ],
51 [tar: etest: Directory is new
52 tar: etest/subdir: Directory is new
53 tar: etest/subdir: contains a cache directory tag excludeme; contents not dumped
54 ],[],[],[gnu])
55
56 AT_CLEANUP
57
This page took 0.033357 seconds and 4 git commands to generate.