]> Dogcows Code - chaz/tar/blob - tests/link01.sh
06aa74bb66ae5f5b22d2d226fd54d1f09e55ffb1
[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 # 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 # The script is based on the report by Toby Peterson <toby@apple.com>
28
29 . ./preset
30 . $srcdir/before
31
32 mkdir directory
33 mkdir directory/test1
34 mkdir directory/test2
35
36 echo TEST > directory/test1/test.txt
37 ln directory/test1/test.txt directory/test2/test.txt
38
39 tar cf archive directory/test1/test.txt directory/test1/test.txt
40
41 rm -r directory
42 tar xf archive
43
44 ls directory/test1
45
46 out="test.txt
47 "
48
49 . $srcdir/after
50
51 # End of link01.sh
This page took 0.036754 seconds and 4 git commands to generate.