tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / distlinksbrk.sh
bloba3b991882eb0af23a7e42b7c8075fd3404c294ca
1 #! /bin/sh
2 # Copyright (C) 2010-2018 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Check that distributed broken symlinks cause 'make dist' to fail, and
18 # to do so with (mostly) meaningful diagnostic.
20 . test-init.sh
22 # We need, for our broken symlinks, names that make it hard to get false
23 # positives when grepping make output to look for them.
24 lnk_base=BrknSymlnk
25 lnk1=${lnk_base}__001
26 lnk2=${lnk_base}__002
27 lnka=${lnk_base}__aaa
28 lnkb=${lnk_base}__bbb
30 ln -s nonesuch $lnk1 || skip_ "cannot create broken symlinks"
32 ln -s "$(pwd)/nonesuch" $lnk2
34 ln -s $lnk1 $lnka
35 ln -s $lnka $lnkb
37 # Sanity checks.
38 test ! -e $lnk1
39 test ! -e $lnk2
40 test ! -e $lnka
41 test ! -e $lnkb
42 test -h $lnk1
43 test -h $lnk2
44 test -h $lnka
45 test -h $lnkb
47 cat >> configure.ac <<'END'
48 AC_OUTPUT
49 END
51 $ACLOCAL
52 $AUTOCONF
54 ls -l # For debugging.
56 # Don't try to use "make -k", because some botched make implementations
57 # (HP-UX, IRIX) might still exit on the first error in this situations.
58 for lnk in $lnk1 $lnk2 $lnka $lnkb; do
59 echo "EXTRA_DIST = $lnk" > Makefile.am
60 $AUTOMAKE
61 ./configure
62 # Distribution must fail, with a decent error message.
63 run_make -M -e FAIL distdir
64 $FGREP $lnk output
65 done