mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-27 07:09:26 +08:00
92ee209330
inherited_linker_flags so it puts it on the link line when linking shared libraries as well as when linking executables. * tests/inherited_flags.at: test inherited_linker_flags. * tests/Makefile.am: Add test. * tests/testsuite.at: Add test. Reported by: Albert Chin-A-Young <china@thewrittenword.com>
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
# Process with autom4te to create an -*- Autotest -*- test suite.
|
|
|
|
# Test suite for GNU Libtool.
|
|
# Copyright 2004 Free Software Foundation, Inc.
|
|
|
|
# This program 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, or (at your option)
|
|
# any later version.
|
|
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
# 02111-1307, USA.
|
|
|
|
m4_divert_push([PREPARE_TESTS])dnl
|
|
: ${LIBTOOLIZE="${abs_top_builddir}/libtoolize"}
|
|
export LIBTOOLIZE
|
|
m4_divert_pop([PREPARE_TESTS])dnl
|
|
|
|
# LT_AT_LIBTOOLIZE([ARGS])
|
|
# ------------------------
|
|
m4_define([LT_AT_LIBTOOLIZE],
|
|
["$LIBTOOLIZE" -I "$abs_top_srcdir" -I "$abs_top_srcdir/config" $1
|
|
])
|
|
|
|
|
|
# LT_AT_CHECK_LIBTOOLIZE(ARGS, [EXIT-STATUS = 0], [STDOUT = `'], [STDERR = `'])
|
|
# -----------------------------------------------------------------------------
|
|
m4_define([LT_AT_CHECK_LIBTOOLIZE],
|
|
[AT_CHECK([LT_AT_LIBTOOLIZE([$1])],
|
|
[$2], [$3], [$4])
|
|
])
|
|
|
|
|
|
# LT_AT_BOOTSTRAP
|
|
# ---------------
|
|
m4_define([LT_AT_BOOTSTRAP],
|
|
[
|
|
test -f ./ltmain.sh || LT_AT_LIBTOOLIZE([--copy])
|
|
test -f ./configure || autoreconf --force --verbose --install
|
|
test -f ./configure || exit 1
|
|
./configure
|
|
])
|
|
|
|
# We use `dnl' in zillions of places...
|
|
m4_pattern_allow([^dnl$])
|
|
|
|
# We exercise these tools.
|
|
AT_TESTED([grep autoreconf autom4te automake])
|
|
|
|
## ----------- ##
|
|
## The suite. ##
|
|
## ----------- ##
|
|
|
|
AT_INIT
|
|
|
|
# Torturing subdir-objects builds
|
|
m4_include([am-subdir.at])
|
|
# Testing func_extract_archives
|
|
m4_include([functests.at])
|
|
# Test that inherited_linker_flags in the .la actually gets used.
|
|
m4_include([inherited_flags.at])
|