]> Dogcows Code - chaz/tar/blob - tests/recurs02.at
Test the --[no-]recursive options (see commit 2bd9c153_.
[chaz/tar] / tests / recurs02.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 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 # 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 ],
41 [0],
42 [directory1/
43 directory2/
44 directory2/file
45 ])
46
47 AT_CLEANUP
This page took 0.037078 seconds and 4 git commands to generate.