Sync bootstrap from Gnulib
[tar.git] / tests / difflink.at
blob78199df8fe14b3e7ebe8230a0aa4e9c8ed088968
1 # This file is part of GNU tar test suite  -*- Autotest -*-
3 # Copyright 2017-2024 Free Software Foundation, Inc.
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 3, or (at your option)
8 # any later version.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 AT_SETUP([link mismatch])
18 AT_KEYWORDS([diff difflink])
19 AT_TAR_CHECK([
20 mkdir a
21 genfile -f a/x
22 ln -s x a/y
23 ln a/x a/z
24 tar cf a.tar a/x a/y a/z
25 rm a/z
26 ln -s x a/z
27 tar df a.tar
29 [1],
30 [a/z: Not linked to a/x
32 [],
33 [],[],[ustar]) # Testing one format is enough
34 AT_CLEANUP