]> Dogcows Code - chaz/tar/blob - tests/remfiles04.at
Improve tar_getcwd
[chaz/tar] / tests / remfiles04.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: Tar 1.26 would remove wrong files when called with
19 # --remove-files and -C
20 # Reported by: Jörgen Strand <Jorgen.Strand@sonymobile.com>
21 # References: <9FC79E5CB90CEC47B9647DCAB7BD327A01AD83B452EE@seldmbx02.corpusers.net>
22 # http://lists.gnu.org/archive/html/bug-tar/2013-09/msg00024.html
23
24 AT_SETUP([remove-files with -C])
25 AT_KEYWORDS([create remove-files remfiles04])
26
27 AT_TAR_CHECK([
28 AT_SORT_PREREQ
29 mkdir foo
30 echo bar > bar
31 echo foobar > foo/bar
32 tar -cf foo.tar --remove-files -C foo bar
33 echo A
34 find . | sort
35 echo foobar > foo/bar
36 tar -rf foo.tar --remove-files -C foo bar
37 echo B
38 find . | sort
39 ],
40 [0],
41 [A
42 .
43 ./bar
44 ./foo
45 ./foo.tar
46 B
47 .
48 ./bar
49 ./foo
50 ./foo.tar
51 ],[],[],[],[gnu])
52
53 AT_CLEANUP
This page took 0.031163 seconds and 4 git commands to generate.