re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / ignfail.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2004, 2006-2007, 2013-2014, 2016 Free Software Foundation,
5 # Inc.
6
7 # This file is part of GNU tar.
8
9 # GNU tar is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU tar is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 # Unreadable directories yielded error despite --ignore-failed-read.
23
24 AT_SETUP([ignfail])
25 AT_KEYWORDS([ignfail])
26
27 AT_TAR_CHECK([
28 # The test is meaningless for super-user.
29 AT_UNPRIVILEGED_PREREQ
30
31 touch file
32 mkdir directory
33 touch directory/file
34
35 echo 1>&2 -----
36 chmod 000 file
37 tar cf archive file
38 status=$?
39 chmod 600 file
40 test $status = 2 || exit 1
41
42 echo 1>&2 -----
43 chmod 000 file
44 tar cf archive --ignore-failed-read file || exit 1
45 status=$?
46 chmod 600 file
47 test $status = 0 || exit 1
48
49 echo 1>&2 -----
50 chmod 000 directory
51 tar cf archive directory
52 status=$?
53 chmod 700 directory
54 test $status = 2 || exit 1
55
56 echo 1>&2 -----
57 chmod 000 directory
58 tar cf archive --ignore-failed-read directory || exit 1
59 status=$?
60 chmod 700 directory
61 test $status = 0
62 ],
63 [0],
64 [],
65 [
66 -----
67 tar: file: Cannot open: Permission denied
68 tar: Exiting with failure status due to previous errors
69 -----
70 tar: file: Warning: Cannot open: Permission denied
71 -----
72 tar: directory: Cannot open: Permission denied
73 tar: Exiting with failure status due to previous errors
74 -----
75 tar: directory: Warning: Cannot open: Permission denied
76 ])
77
78 AT_CLEANUP