tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / libtool9.sh
1 #! /bin/sh
2 # Copyright (C) 2005-2013 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Make sure xxx_LINK is defined for each target that requires specific
18 # flags.
19 # Quite similar to 'libtool7.sh', using AM_LDFLAGS in addition to
20 # xxx_LDFLAGS.
21
22 required='cc libtoolize'
23 . test-init.sh
24
25 cat >> configure.ac << 'END'
26 AC_PROG_CC
27 AM_PROG_CC_C_O
28 AM_PROG_AR
29 AC_LIBTOOL_DLOPEN
30 AM_PROG_LIBTOOL
31 AC_OUTPUT
32 END
33
34 cat > Makefile.am << 'END'
35 AM_LDFLAGS = -module
36 lib_LTLIBRARIES = libmod1.la mod2.la
37 libmod1_la_SOURCES = mod1.c
38 libmod1_la_LDFLAGS =
39 libmod1_la_LIBADD = -dlopen mod2.la
40 mod2_la_SOURCES = mod2.c
41
42 bin_PROGRAMS = prg prg2
43 prg_SOURCES = prg.c
44 prg_LDADD = -dlopen libmod1.la -dlpreopen mod2.la
45 prg_CPPFLAGS = -DXYZ=1
46 prg2_SOURCES = prg.c
47 prg2_CFLAGS =
48
49 print:
50         @echo 1BEG: $(prg_DEPENDENCIES) :END1
51         @echo 2BEG: $(libmod1_la_DEPENDENCIES) :END2
52         @echo 3BEG: $(libmod1_la_LINK) :END3
53         @echo 4BEG: $(mod2_la_LINK) :END4
54         @echo 5BEG: $(prg_LINK) :END5
55         @echo 6BEG: $(prg2_LINK) :END6
56
57 END
58
59 mkdir liba
60
61 cat > mod1.c << 'END'
62 int mod1 (void)
63 {
64    return 1;
65 }
66 END
67
68 cat > mod2.c << 'END'
69 int mod2 (void)
70 {
71    return 2;
72 }
73 END
74
75 cat > prg.c << 'END'
76 int main (void)
77 {
78    return 0;
79 }
80 END
81
82 libtoolize --force --copy
83 $ACLOCAL
84 $AUTOCONF
85 $AUTOMAKE --add-missing --copy
86
87 ./configure
88 run_make -M -- print \
89   LDFLAGS=ldflags \
90   AM_LDFLAGS=am_ldflags \
91   libmod1_la_LDFLAGS=lm1_la_ldflags \
92   CFLAGS=cflags \
93   AM_CFLAGS=am_cflags \
94   prg2_CFLAGS=prg2_cflags
95
96 grep '1BEG: libmod1.la mod2.la :END1' output
97 grep '2BEG: mod2.la :END2' output
98 grep '3BEG:.* am_cflags cflags .*lm1_la_ldflags ldflags.* :END3' output
99 grep '3BEG: .*am_ldflags.* :END3' output && exit 1
100 grep '4BEG: :END4' output
101 grep '5BEG: :END5' output
102 grep '6BEG:.* prg2_cflags cflags .*am_ldflags ldflags.* :END6' output
103 grep '6BEG: .*am_cflags.* :END6' output && exit 1
104
105 $MAKE
106
107 :