]> Dogcows Code - chaz/tar/blob - tests/remfiles05a.at
Update copyright years.
[chaz/tar] / tests / remfiles05a.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2013-2014 Free Software Foundation, Inc.
4 #
5 # GNU tar is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # GNU tar is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 # Description: ensure tar correctly respects -C option when deleting
19 # files due to the --remove-files option.
20 #
21 # This case checks the use of two relative-path -C options,
22 # in --create/non-incremental mode.
23 #
24 # (This specific case failed during development of tar 1.26.90:
25 # There was a leftover call to chdir in name_next_elt() in
26 # tar 1.26. After commit e3d28d84 this call would confuse the
27 # tar_getcwd function.
28 #
29 # Reported by: Nathan Stratton Treadway <nathanst@ontko.com>
30 # References: <20130924145657.GM32256@shire.ontko.com>,
31 # http://lists.gnu.org/archive/html/bug-tar/2013-09/msg00045.html
32 # )
33
34 AT_SETUP([remove-files with -C:rel,rel in -c/non-incr. mode])
35 AT_KEYWORDS([create remove-files remfiles05 remfiles05a])
36
37 AT_TAR_CHECK([
38 AT_SORT_PREREQ
39 mkdir foo
40 mkdir bar
41 echo file > file
42 echo foo/file > foo/file
43 echo bar/file > bar/file
44 decho A
45 tar -cvf foo.tar --remove-files -C foo file -C ../bar file
46 decho B
47 find . | sort
48 ],
49 [0],
50 [A
51 file
52 file
53 B
54 .
55 ./bar
56 ./file
57 ./foo
58 ./foo.tar
59 ],
60 [A
61 B
62 ],[],[],[gnu])
63
64 AT_CLEANUP
This page took 0.033896 seconds and 4 git commands to generate.