tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / primary-prefix-couples-force-valid.sh
blobf1d7be967fdfd53bcbcd4413d82c19aca9c9b3fc
1 #! /bin/sh
2 # Copyright (C) 2011-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 a user who wants to use an invalid prefix/primary
18 # combination can do so with a proper workaround.
19 # For example, this:
20 # lib_PROGRAMS = foo
21 # is expected to cause an automake error, but this:
22 # bardir = $(libdir)
23 # bar_PROGRAMS = foo
24 # should work.
26 required=cc
27 . test-init.sh
29 cat >> configure.ac <<'END'
30 AC_PROG_CC
31 AM_PROG_AR
32 AC_PROG_RANLIB
33 AC_OUTPUT
34 END
36 cat > Makefile.am <<'END'
37 my_libdir = $(libdir)
38 my_lib_PROGRAMS = foo
40 foodir = $(bindir)
41 foo_LIBRARIES = libquux.a
43 xdir = $(libexecdir)
44 x_HEADERS = bar.h
46 installcheck-local: test
47 .PHONY: test
48 test:
49 (cd '$(prefix)' && find .);: For debugging.
50 ls -l '$(libdir)/foo$(EXEEXT)'
51 test -f '$(libdir)/foo$(EXEEXT)'
52 test -x '$(libdir)/foo$(EXEEXT)'
53 ls -l '$(bindir)/libquux.a'
54 test -f '$(bindir)/libquux.a'
55 ls -l '$(libexecdir)/bar.h'
56 test -f '$(libexecdir)/bar.h'
57 ## If this test is run as root, "test -x" could succeed also for
58 ## non-executable files, so we need to protect the next check.
59 ## See automake bug#12041.
60 if test -x Makefile; then echo SKIP THIS; else \
61 test ! -x '$(libexecdir)/bar.h'; \
62 fi;
63 END
65 cat > foo.c <<'END'
66 int main (void)
68 return 0;
70 END
72 cat > libquux.c <<'END'
73 int quux(void)
75 return 1;
77 END
79 : > bar.h
81 $ACLOCAL
82 $AUTOMAKE -a
83 $AUTOCONF
85 cwd=$(pwd) || fatal_ "getting current working directory"
86 ./configure --prefix="$cwd/_inst"
88 $MAKE install
89 $MAKE installcheck
90 $MAKE distcheck