]> git.cworth.org Git - tar/blob - tests/extrac15.at
upstream: Fix extraction of device nodes.
[tar] / tests / extrac15.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2010 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3, or (at your option)
9 # any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 # written by Paul Eggert
20
21 # Check diagnostic of 'tar -x a/b/c' when b cannot be created.
22
23 AT_SETUP([extract parent mkdir failure])
24 AT_KEYWORDS([extract extrac15])
25
26 AT_TAR_CHECK([
27 AT_UNPRIVILEGED_PREREQ
28
29 mkdir src src/a src/a/b dest dest/a
30 touch src/a/b/c
31 chmod a-w dest/a
32
33 tar -cf archive.tar -C src a/b/c &&
34 if tar -xf archive.tar -C dest a/b/c
35 then (exit 1)
36 else (exit 0)
37 fi
38 ],
39 [0],[],[tar: a/b: Cannot mkdir: Permission denied
40 tar: a/b/c: Cannot open: No such file or directory
41 tar: Exiting with failure status due to previous errors
42 ],[],[],[gnu])
43
44 AT_CLEANUP