]> Dogcows Code - chaz/tar/blob - tests/link01.sh
f88d4dda6a22f935c908d4f64b12fc1018b2a107
[chaz/tar] / tests / link01.sh
1 #! /bin/sh
2 # This file is part of GNU tar testsuite.
3 # Copyright (C) 2004 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 # 02111-1307, USA.
19
20 # Problem: If a member with link count > 2 was stored in the archive twice,
21 # previous versions of tar were not able to extract it, since they
22 # were trying to link the file to itself, which always failed and
23 # lead to removing the already extracted copy. This script tests
24 # the workaround by Paul Eggert that leaves the extracted copy
25 # untouched.
26 #
27 # Reported by: Toby Peterson <toby@apple.com>
28 #
29 # References: <2330D503-D20A-11D8-A0CF-00039391EECE@apple.com>
30 # http://lists.gnu.org/archive/html/bug-tar/2004-07/msg00009.html
31
32 . ./preset
33 . $srcdir/before
34
35 mkdir directory
36 mkdir directory/test1
37 mkdir directory/test2
38
39 echo TEST > directory/test1/test.txt
40 ln directory/test1/test.txt directory/test2/test.txt
41
42 tar cf archive directory/test1/test.txt directory/test1/test.txt
43
44 rm -r directory
45 tar xf archive
46
47 ls directory/test1
48
49 out="test.txt
50 "
51
52 . $srcdir/after
53
54 # End of link01.sh
This page took 0.038314 seconds and 3 git commands to generate.