re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / recurs02.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 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 # Description: Test interaction of --recursion and --no-recursion options.
22 # Each of them remains in effect until cancelled by the next ocurrence
23 # of its counterpart.  This didn't work in v.1.27.1 and was fixed by
24 # commit 2bd9c153.
25 # Reported by: Kai <hellsy22@mail.ru>
26 # References: <1389166145.829001090@f341.i.mail.ru>,
27 #             <20140108231826.16453@ulysses.gnu.org.ua>,
28 #             https://lists.gnu.org/archive/html/bug-tar/2014-01/msg00019.html
29
30 AT_SETUP([recurse: toggle])
31 AT_KEYWORDS([recurse options recurse02])
32
33 AT_TAR_CHECK([
34 mkdir directory1 directory2
35 touch directory1/file directory2/file
36 tar --create --file archive \
37     --no-recursion directory1 \
38     --recursion directory2 || exit 1
39 tar tf archive
40 tar cf archive directory1 directory2
41 tar tf archive \
42     --no-recursion directory1 \
43     --recursion directory2 || exit 1
44 ],
45 [0],
46 [directory1/
47 directory2/
48 directory2/file
49 directory1/
50 directory2/
51 directory2/file
52 ])
53
54 AT_CLEANUP