tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / vala-vpath.sh
blob3014a6a178e8e83903b079f83af91bca9cdbdbf8
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 # Test to make sure vala support handles from-scratch VPATH builds.
18 # See automake bug#8753.
20 required="cc valac pkg-config GNUmake"
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_CONFIG_SRCDIR([hello.vala])
25 AC_PROG_CC
26 AM_PROG_VALAC([0.7.3])
27 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.4])
28 AC_OUTPUT
29 END
31 cat > Makefile.am <<'END'
32 bin_PROGRAMS = foo bar
33 AM_CFLAGS = $(GOBJECT_CFLAGS)
34 LDADD = $(GOBJECT_LIBS)
35 foo_SOURCES = hello.vala
36 bar_VALAFLAGS = -H zardoz.h
37 bar_SOURCES = goodbye.vala
38 END
40 cat > hello.vala <<'END'
41 void main ()
43 stdout.printf ("foofoofoo\n");
45 END
46 cp hello.vala goodbye.vala
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE
52 mkdir build
53 cd build
54 ../configure
55 $MAKE
56 test -f ../foo_vala.stamp
57 test -f ../bar_vala.stamp
58 grep foofoofoo ../hello.c
59 test -f ../zardoz.h
60 $MAKE distcheck
62 # Rebuild rules work also in VPATH builds.
64 cat > ../hello.vala <<'END'
65 int main ()
67 stdout.printf ("barbarbar\n");
68 return 0;
70 END
72 $MAKE
73 test -f ../foo_vala.stamp
74 test -f ../bar_vala.stamp
75 grep barbarbar ../hello.c
77 # Rebuild rules are not uselessly triggered.
78 $MAKE -q
79 $MAKE -n | grep '\.stamp' && exit 1
81 # Cleanup rules work also in VPATH builds.
82 $MAKE clean
83 test -f ../foo_vala.stamp
84 test -f ../bar_vala.stamp
85 test -f ../zardoz.h
86 test -f ../hello.c
87 $MAKE maintainer-clean
88 test ! -e ../zardoz.h
89 test ! -e ../hello.c
90 test ! -e ../foo_vala.stamp
91 test ! -e ../bar_vala.stamp