summaryrefslogtreecommitdiff
path: root/tests/deplib-in-subdir.at
blob: 9ace6f25e8429f5ed915e520b3d67d6d6355e5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# deplib-in-subdir.at --                         -*- Autotest -*-

#   Copyright (C) 2010-2012 Free Software Foundation, Inc.
#
#   This file is part of GNU Libtool.
#
# GNU Libtool is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# GNU Libtool is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Libtool; see the file COPYING.  If not, a copy
# can be downloaded from  http://www.gnu.org/licenses/gpl.html,
# or obtained by writing to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
####

# It should be possible to use a nontrivial relative path to the output
# file name when creating libraries and programs.  The deplibs of these
# might have relative paths as well.  When executing uninstalled programs,
# the paths relative to $PWD at build time needs to be translated to a
# path valid at execution time.
#
# Also test installing these libraries and programs; however,
# use consistent relative paths between `libtool --mode=link' and
# `libtool --mode=install' in this test.

AT_SETUP([deplib in subdir])
AT_KEYWORDS([libtool])

AT_DATA([a1.c],
[[int a1 () { return 0; }
]])
AT_DATA([a2.c],
[[int a2 () { return 0; }
]])
AT_DATA([a3.c],
[[int a3 () { return 0; }
]])
AT_DATA([b1.c],
[[extern int a1 ();
int b1 () { return a1 (); }
]])
AT_DATA([b2.c],
[[extern int a2 ();
int b2 () { return a2 (); }
]])
AT_DATA([b3.c],
[[extern int a3 ();
int b3 () { return a3 (); }
]])
AT_DATA([m.c],
[[extern int b1 ();
extern int b2 ();
extern int b3 ();
int main () { return b1 () + b2 () + b3 (); }
]])

cwd=`pwd`
instdir=$cwd/inst
lib1dir=$instdir/lib1
lib2dir=$instdir/lib2
bindir=$instdir/bin
addrunpath=$cwd/foobar
LDFLAGS="$LDFLAGS -no-undefined"

flags='-export-symbols-regex ".*"'

mkdir -p sub1 sub2/subsub sub3/subsub $instdir $lib1dir $lib2dir $bindir

for file in a1.c a2.c a3.c b1.c b2.c b3.c; do
  $LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c $file
done
$CC $CPPFLAGS $CFLAGS -c m.c
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o sub1/liba1.la a1.lo -rpath $lib1dir],
	 [], [ignore], [ignore])
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o sub1/liba2.la a2.lo -rpath $lib1dir],
	 [], [ignore], [ignore])
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o sub1/liba3.la a3.lo -rpath $lib1dir],
	 [], [ignore], [ignore])

AT_CHECK([eval '$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o sub2/subsub/libb1.la b1.lo ]dnl
	 [-rpath $lib2dir sub1/liba1.la' "$flags"],
	 [], [ignore], [ignore])
cd sub2
AT_CHECK([eval '$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o subsub/libb2.la ../b2.lo ]dnl
	 [-rpath $lib2dir ../sub1/liba2.la' "$flags"],
	 [], [ignore], [ignore])
cd subsub
AT_CHECK([eval '$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o libb3.la ../../b3.lo ]dnl
	 [-rpath $lib2dir ../../sub1/liba3.la' "$flags"],
	 [], [ignore], [ignore])
cd ../..
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o sub3/subsub/m1$EXEEXT m.$OBJEXT ]dnl
	 [sub2/subsub/libb1.la sub2/subsub/libb2.la sub2/subsub/libb3.la],
	 [], [ignore], [ignore])
cd sub3
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o subsub/m2$EXEEXT ../m.$OBJEXT ]dnl
	 [../sub2/subsub/libb1.la ../sub2/subsub/libb2.la ../sub2/subsub/libb3.la],
	 [], [ignore], [ignore])
cd subsub
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o m3$EXEEXT ../../m.$OBJEXT ]dnl
	 [../../sub2/subsub/libb1.la ../../sub2/subsub/libb2.la ../../sub2/subsub/libb3.la],
	 [], [ignore], [ignore])
cd ../..

for i in 1 2 3; do
  LT_AT_EXEC_CHECK([./sub3/subsub/m$i])
  cd sub3
  LT_AT_EXEC_CHECK([./subsub/m$i])
  cd subsub
  LT_AT_EXEC_CHECK([./m$i])
  cd ../..
done

for i in 1 2 3; do
  AT_CHECK([$LIBTOOL --mode=install cp sub1/liba$i.la $lib1dir/liba.la], [], [ignore], [ignore])
done

AT_CHECK([$LIBTOOL --mode=install cp sub2/subsub/libb1.la $lib2dir/libb1.la], [], [ignore], [ignore])
cd sub2
AT_CHECK([$LIBTOOL --mode=install cp subsub/libb2.la $lib2dir/libb2.la], [], [ignore], [ignore])
cd subsub
AT_CHECK([$LIBTOOL --mode=install cp libb3.la $lib2dir/libb3.la], [], [ignore], [ignore])
cd ../..

AT_CHECK([$LIBTOOL --mode=install cp sub3/subsub/m1$EXEEXT $bindir/m1$EXEEXT], [], [ignore], [ignore])
cd sub3
AT_CHECK([$LIBTOOL --mode=install cp subsub/m2$EXEEXT $bindir/m2$EXEEXT], [], [ignore], [ignore])
cd subsub
AT_CHECK([$LIBTOOL --mode=install cp m3$EXEEXT $bindir/m3$EXEEXT], [], [ignore], [ignore])
cd ../..

AT_CHECK([$LIBTOOL --mode=clean rm -f sub1/liba1.la sub1/liba2.la sub1/liba3.la ]dnl
	 [sub2/subsub/libb1.la sub2/subsub/libb2.la sub2/subsub/libb3.la ]dnl
	 [sub3/subsub/m1$EXEEXT sub3/subsub/m2$EXEEXT sub3/subsub/m3$EXEEXT],
	 [], [ignore], [ignore])

for i in 1 2 3; do
  LT_AT_EXEC_CHECK([$bindir/m$i$EXEEXT])
  cd $bindir
  LT_AT_EXEC_CHECK([./m$i$EXEEXT])
  cd $cwd
done

PATH=$bindir${PATH_SEPARATOR-:}$PATH
for i in 1 2 3; do
  LT_AT_EXEC_CHECK([m$i$EXEEXT])
done

AT_CLEANUP