]> git.cworth.org Git - tar/blob - tests/link03.at
upstream: Fix extraction of device nodes.
[tar] / tests / link03.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2009 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 # Make sure -l option works correctly in conjunction with --remove-files
22 # See also link02.at
23
24 AT_SETUP([working -l with --remove-files])
25 AT_KEYWORDS([hardlinks link03])
26
27 m4_define([create_files],[
28 genfile -l 64 -f file1
29 ln file1 file2
30 ln file2 file3
31 ln file3 file4
32 ])
33
34 AT_TAR_CHECK([
35 create_files
36 echo archive.1
37 tar -c -f archive.1 -l --remove-files file1 file2 file3 file4
38 create_files
39 echo archive.2
40 tar -c -f archive.2 -l --remove-files file1 file2 file3
41 echo testing archive.2
42 tar tfv archive.2 | sed -n 's/.*file[[2-3]] link to //p'
43 ],
44 [0],
45 [archive.1
46 archive.2
47 testing archive.2
48 file1
49 file1
50 ],
51 [tar: Missing links to `file1'.
52 ])
53
54 AT_CLEANUP