summaryrefslogtreecommitdiff
path: root/tests/T-recurse.at
blob: 4c88024150af91af83a4f72fa5b1afec2f65d116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Process this file with autom4te to create testsuite. -*- Autotest -*-

# Test suite for GNU tar.
# Copyright 2015-2016 Free Software Foundation, Inc.

# This file is part of GNU tar.

# GNU tar is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.

# GNU tar is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Description: Test interaction of --recursion and --no-recursion options
# together with --files-from option.  This is complementary to recurs02.at test
# case. References:
# <alpine.LSU.2.11.1502201029580.29773@nerf60.vanv.qr>
# http://lists.gnu.org/archive/html/bug-tar/2015-06/msg00006.html

AT_SETUP([files-from & recurse: toggle])
AT_KEYWORDS([recurse T-recurse files-from])

AT_TAR_CHECK([
mkdir directory1 directory2
touch directory1/file directory2/file

AT_DATA([F1],[--no-recursion
directory1/
--recursion
directory2/
])

AT_DATA([F2A],[directory1/
])

AT_DATA([F2B],[directory2/
])

a=archive
tar cf "$a" --files-from F1
tar tf "$a"

a=archive2
tar cf "$a" --no-recursion -T F2A --recursion -T F2B
tar tf "$a"
],
[0],
[directory1/
directory2/
directory2/file
directory1/
directory2/
directory2/file
])

AT_CLEANUP


AT_SETUP([toggle --recursion (not) from -T])
AT_KEYWORDS([recurse T-recurse T-recurse2 files-from])

AT_TAR_CHECK([
mkdir directory1 directory2
touch directory1/file directory2/file

AT_DATA([F1],[--no-recursion
directory1/
])

AT_DATA([F2],[directory2/
])

tar cf archive -T F1 --recursion -T F2
tar tf archive

],
[0],
[directory1/
directory2/
directory2/file
])

AT_CLEANUP