]> git.cworth.org Git - tar/blob - tests/xform-h.at
upstream: Fix extraction of device nodes.
[tar] / tests / xform-h.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2009, 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, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 # When creating archives, tar 1.22 did not apply the --transform option
22 # to hard links.
23 #
24 # Reported by: Jose Miguel Goncalves <jose.goncalves@inov.pt>
25 # References:
26 #   <4A436D1D.4040408@inov.pt>
27 #   http://lists.gnu.org/archive/html/bug-tar/2009-06/msg00017.html
28 #
29
30 AT_SETUP([transforming hard links on create])
31 AT_KEYWORDS([transform xform xform-h])
32
33 m4_pushdef([xformtest],[
34 echo "$1"
35 tar cf archive --transform="s,^basedir/,,$2" basedir/test basedir/test_link
36 tar tvf archive | sed -n 's/.*test_link link to //p'
37 ])
38
39 AT_TAR_CHECK([
40 mkdir basedir
41 echo "hello" > basedir/test
42 ln basedir/test basedir/test_link
43
44 xformtest(Default transform scope)
45 xformtest(Transforming hard links,h)
46 xformtest(Not transforming hard links,H)
47 ],
48 [0],
49 [Default transform scope
50 test
51 Transforming hard links
52 test
53 Not transforming hard links
54 basedir/test
55 ])
56
57 m4_popdef([xformtest])
58
59 AT_CLEANUP
60
61 # End of xform-h.at