2009-11-15 03:47:10 +08:00
|
|
|
# lt_dlopen_a.at -- test libltdl functionality -*- Autotest -*-
|
|
|
|
#
|
2012-09-16 14:10:09 +08:00
|
|
|
# Copyright (C) 2009, 2011-2012 Free Software Foundation, Inc.
|
2009-11-15 03:47:10 +08:00
|
|
|
# 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.
|
|
|
|
####
|
|
|
|
|
|
|
|
AT_SETUP([lt_dlopen archive])
|
|
|
|
AT_KEYWORDS([libltdl lt_dlopen_a])
|
|
|
|
|
|
|
|
AT_DATA([main.c],
|
|
|
|
[[#include <ltdl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/* This dlopen() in the main executable should override any dlopen()s in
|
|
|
|
shared libraries etc.
|
|
|
|
|
|
|
|
If that is not the case (or the platform does not use dlopen()) then this
|
|
|
|
test should exit 77, causing the test to SKIP.
|
|
|
|
*/
|
|
|
|
static int retcde = 77;
|
|
|
|
|
|
|
|
void * dlopen(const char *path, int mode) {
|
|
|
|
if (!(strcmp(path,"plugin.a") && strcmp(path,"plugin.lib")))
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Tried to open archive %s\n",path);
|
|
|
|
retcde = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Opening ... %s\n", path);
|
|
|
|
if (retcde == 77) retcde = 0;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
lt_dlhandle plugin_handle;
|
|
|
|
|
|
|
|
lt_dlinit ();
|
|
|
|
plugin_handle = lt_dlopenext (argv[1]);
|
|
|
|
lt_dlexit ();
|
|
|
|
return retcde;
|
|
|
|
}
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([plugin.c],
|
|
|
|
[[
|
|
|
|
int i = 1;
|
|
|
|
]])
|
|
|
|
|
|
|
|
: ${LTDLINCL="-I$abs_top_srcdir/libltdl"}
|
|
|
|
: ${LIBLTDL="$abs_builddir/../libltdl/libltdlc.la"}
|
|
|
|
|
|
|
|
CPPFLAGS="$LTDLINCL $CPPFLAGS"
|
|
|
|
inst=`pwd`/inst
|
|
|
|
libdir=$inst/lib
|
|
|
|
bindir=$inst/bin
|
|
|
|
|
|
|
|
AT_CHECK([$CC $CPPFLAGS $CFLAGS -c main.c || exit 77],[],[ignore],[ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c plugin.c || exit 77],
|
|
|
|
[], [ignore], [ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o plugin.la -rpath ]dnl
|
|
|
|
[$libdir -module -no-undefined -avoid-version plugin.lo || exit 77],
|
|
|
|
[], [ignore], [ignore])
|
|
|
|
|
|
|
|
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o main$EXEEXT ]dnl
|
|
|
|
[main.$OBJEXT -dlopen plugin.la $LIBLTDL || exit 77],
|
|
|
|
[], [ignore], [ignore])
|
|
|
|
|
|
|
|
mkdir -p $libdir
|
|
|
|
mkdir -p $bindir
|
|
|
|
|
|
|
|
AT_CHECK([$LIBTOOL --mode=install cp plugin.la $libdir],[], [ignore], [ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=install cp main$EXEEXT $bindir],[], [ignore], [ignore])
|
tests: migrate tests/sh.test checks to syntax-checks.
Some modernization of the legacy testsuite.
* tests/sh.test: Remove.
* Makefile.am (COMMON_TESTS): Adjust.
* cfg.mk (sc_libtool_m4_cc_basename, sc_prohibit_bracket_as_test)
(sc_prohibit_nested_quotes, sc_prohibit_set_dummy_without_shift)
(sc_prohibit_set_minus_minus, sc_prohibit_test_binary_operators)
(sc_prohibit_test_dollar, sc_prohibit_test_minus_e)
(sc_prohibit_test_unary_operators, sc_prohibit_test_X)
(sc_prohibit_Xsed_withou_X, sc_require_function_nl_brace):
Functionally identical tests to what used to be performed by
sh.test, only with coverage of all files.
* bootstrap, build-aux/edit-readme-alpha,
build-aux/extract-trace, build-aux/getopt.m4sh,
build-aux/ltmain.m4sh, configure.ac, m4/libtool.m4, m4/ltdl.m4,
tests/bindir.at, tests/configure-iface.at, tests/cwrapper.at,
tests/darwin.at, tests/defs.m4sh, tests/demo-hardcode.test,
tests/dlloader-api.at, tests/exceptions.at,
tests/getopt-m4sh.at, tests/lalib-syntax.at, tests/link-2.test,
tests/link-order2.at, tests/loadlibrary.at,
tests/lt_dladvise.at, tests/lt_dlexit.at, tests/lt_dlopen_a.at,
tests/lt_dlopenext.at, tests/need_lib_prefix.at,
tests/nonrecursive.at, tests/recursive.at, tests/resident.at,
tests/standalone.at, tests/static.at, tests/stresstest.at,
tests/subproject.at, tests/sysroot.at, tests/tagtrace.test,
tests/testsuite.at: Fix violations of the new syntax checks.
Signed-off-by: Gary V. Vaughan <gary@gnu.org>
2011-11-17 00:21:18 +08:00
|
|
|
AT_CHECK([test -f "$libdir/plugin.a" || exit 77])
|
2009-11-15 03:47:10 +08:00
|
|
|
LT_AT_EXEC_CHECK([$bindir/main], [], [ignore], [ignore],[$libdir/plugin.la])
|
|
|
|
|
|
|
|
AT_CLEANUP
|