]> Dogcows Code - chaz/tar/blob - tests/remfiles06c.at
ad9164d24a0f454014aae717a40b5b3a1528a0f8
[chaz/tar] / tests / remfiles06c.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2013 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 a relative -C option followed by an absolute -C,
22 # in --append mode.
23 #
24
25 AT_SETUP([remove-files with -C:rel,abs in -r mode])
26 AT_KEYWORDS([create append remove-files remfiles06 remfiles06c])
27
28 AT_TAR_CHECK([
29 AT_SORT_PREREQ
30 mkdir foo
31 mkdir bar
32 echo file > file
33 echo foo/file > foo/file
34 echo bar/file > bar/file
35 DIR=`pwd`
36 tar -cf foo.tar -C foo file -C $DIR/bar file
37 decho A
38 find . | sort
39 decho B
40 tar -rvf foo.tar --remove-files -C foo file -C ../bar file
41 decho C
42 find . | sort
43 ],
44 [0],
45 [A
46 .
47 ./bar
48 ./bar/file
49 ./file
50 ./foo
51 ./foo.tar
52 ./foo/file
53 B
54 file
55 file
56 C
57 .
58 ./bar
59 ./file
60 ./foo
61 ./foo.tar
62 ],
63 [A
64 B
65 C
66 ],[],[],[gnu])
67
68 AT_CLEANUP
This page took 0.031242 seconds and 3 git commands to generate.