]> Dogcows Code - chaz/tar/blob - tests/extrac10.at
a0034778d55936ebc0f17220c88021f1b89b923e
[chaz/tar] / tests / extrac10.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2010, 2013 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 # written by Paul Eggert
22
23 # Check that delayed setting of directory metadata does not collide
24 # with the -C option. When setting a directory's permissions, time
25 # stamps, etc., tar should apply the -C option that was in effect when
26 # the directory was extracted, not the -C option that happens to be in
27 # effect when the metadata are later set.
28
29 AT_SETUP([-C and delayed setting of metadata])
30 AT_KEYWORDS([extract extrac10])
31
32 AT_TAR_CHECK([
33 mkdir d x x/y
34 echo foo >d/d1
35 echo bar >e
36
37 tar -cf archive.tar d e &&
38 tar -xf archive.tar -C x d -C y e &&
39 diff -r d x/d &&
40 diff e x/y/e
41 ],
42 [0],
43 [],
44 [],[],[],[gnu])
45
46 AT_CLEANUP
This page took 0.030206 seconds and 3 git commands to generate.