2009-12-09 14:28:59 +08:00
|
|
|
# lalib-syntax.at -- parsing .la files robustly -*- Autotest -*-
|
|
|
|
#
|
2024-01-12 14:35:32 +08:00
|
|
|
# Copyright (C) 2009-2019, 2021-2024 Free Software Foundation, Inc.
|
2009-12-09 14:28:59 +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
|
libtool: FSF office address replaced by URL
* AUTHORS, HACKING, Makefile.am, bootstrap.conf, build-aux/edit-readme-alpha,
build-aux/no-bogus-m4-defines, cfg.mk, configure.ac, libltdl/configure.ac,
libltdl/libltdl/lt__alloc.h, libltdl/libltdl/lt__argz_.h,
libltdl/libltdl/lt__dirent.h, libltdl/libltdl/lt__glibc.h,
libltdl/libltdl/lt__private.h, libltdl/libltdl/lt__strl.h,
libltdl/libltdl/lt_dlloader.h, libltdl/libltdl/lt_error.h,
libltdl/libltdl/lt_system.h, libltdl/libltdl/slist.h,
libltdl/loaders/dld_link.c, libltdl/loaders/dlopen.c,
libltdl/loaders/dyld.c, libltdl/loaders/load_add_on.c,
libltdl/loaders/loadlibrary.c, libltdl/loaders/preopen.c,
libltdl/loaders/shl_load.c, libltdl/lt__alloc.c, libltdl/lt__argz.c,
libltdl/lt__dirent.c, libltdl/lt__strl.c, libltdl/lt_dlloader.c,
libltdl/lt_error.c, libltdl/ltdl.c, libltdl/ltdl.h, libltdl/ltdl.mk,
libltdl/slist.c, tests/am-subdir.at, tests/archive-in-archive.at,
tests/bindir.at, tests/bug_62343.at, tests/cdemo.at, tests/cmdline_wrap.at,
tests/configure-funcs.at, tests/configure-iface.at, tests/convenience.at,
tests/ctor.at, tests/cwrapper.at, tests/darwin.at, tests/demo.at,
tests/depdemo.at, tests/deplib-in-subdir.at, tests/deplibs-ident.at,
tests/deplibs-mingw.at, tests/destdir.at, tests/dlloader-api.at,
tests/dumpbin-symbols.at, tests/duplicate_conv.at, tests/duplicate_deps.at,
tests/duplicate_members.at, tests/early-libtool.at, tests/exceptions.at,
tests/execute-mode.at, tests/exeext.at, tests/export-def.at,
tests/export.at, tests/f77demo.at, tests/fail.at, tests/fcdemo.at,
tests/flags.at, tests/help.at, tests/indirect_deps.at, tests/infer-tag.at,
tests/inherited_flags.at, tests/install.at, tests/lalib-syntax.at,
tests/libtool.at, tests/libtoolize.at, tests/link-order.at,
tests/link-order2.at, tests/loadlibrary.at, tests/localization.at,
tests/lt_dladvise.at, tests/lt_dlexit.at, tests/lt_dlopen.at,
tests/lt_dlopen_a.at, tests/lt_dlopenext.at, tests/ltdl-api.at,
tests/ltdl-libdir.at, tests/mdemo.at, tests/need_lib_prefix.at,
tests/no-executables.at, tests/nocase.at, tests/nonrecursive.at,
tests/old-m4-iface.at, tests/pic_flag.at, tests/recursive.at,
tests/resident.at, tests/runpath-in-lalib.at, tests/search-path.at,
tests/shlibpath.at, tests/slist.at, tests/standalone.at, tests/static.at,
tests/stresstest.at, tests/subproject.at, tests/sysroot.at, tests/tagdemo.at,
tests/template.at, tests/testsuite.at, tests/versioning.at,
tests/with-pic.at: Replace FSF address in each file's license block with
a URL that points to licenses online hosted by GNU.
2024-09-03 23:02:46 +08:00
|
|
|
# along with GNU Libtool. If not, see <https://www.gnu.org/licenses/>.
|
2009-12-09 14:28:59 +08:00
|
|
|
####
|
|
|
|
|
|
|
|
AT_SETUP([syntax of .la files])
|
|
|
|
AT_KEYWORDS([libtool])
|
|
|
|
AT_KEYWORDS([libltdl])
|
|
|
|
|
2010-08-31 04:42:11 +08:00
|
|
|
AT_XFAIL_IF([:]) dnl libltdl does not consistently return non-NULL lt_dlerror
|
|
|
|
|
2009-12-09 14:28:59 +08:00
|
|
|
AT_DATA([main.c],
|
|
|
|
[[#include <ltdl.h>
|
|
|
|
#include <stdio.h>
|
2010-08-31 04:42:11 +08:00
|
|
|
#include <assert.h>
|
2009-12-09 14:28:59 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
lt_dlhandle plugin_handle;
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "usage: %s plugin\n", argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
lt_dlinit ();
|
|
|
|
plugin_handle = lt_dlopenext (argv[1]);
|
|
|
|
if (NULL != plugin_handle)
|
|
|
|
{
|
|
|
|
printf ("plugin opened successfully!\n");
|
|
|
|
lt_dlclose (plugin_handle);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-31 04:42:11 +08:00
|
|
|
const char *error = lt_dlerror ();
|
|
|
|
assert (error != NULL);
|
|
|
|
printf ("plugin failed to open: %s\n", error);
|
2009-12-09 14:28:59 +08:00
|
|
|
err = 1;
|
|
|
|
}
|
|
|
|
lt_dlexit ();
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([module.c],
|
|
|
|
[[int foo (void) { return 0; }
|
|
|
|
]])
|
|
|
|
|
|
|
|
: ${LTDLINCL="-I$abs_top_srcdir/libltdl"}
|
|
|
|
: ${LIBLTDL="$abs_builddir/../libltdl/libltdlc.la"}
|
2010-05-21 05:21:38 +08:00
|
|
|
|
|
|
|
# Skip this test when called from:
|
|
|
|
# make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install
|
|
|
|
AT_CHECK([case $LIBLTDL in #(
|
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
|
|
|
*/_inst/lib/*) test -f "$LIBLTDL" || (exit 77) ;;
|
2010-05-21 05:21:38 +08:00
|
|
|
esac], [], [ignore])
|
|
|
|
|
2009-12-09 14:28:59 +08:00
|
|
|
CPPFLAGS="$CPPFLAGS $LTDLINCL"
|
|
|
|
|
|
|
|
AT_CHECK([$CC $CPPFLAGS $CFLAGS -c main.c], [], [ignore], [ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c module.c],
|
|
|
|
[], [ignore], [ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o module.la module.lo ]dnl
|
|
|
|
[-module -avoid-version -rpath /somewhere], [], [ignore], [ignore])
|
|
|
|
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o main main.$OBJEXT $LIBLTDL],
|
|
|
|
[], [ignore], [ignore])
|
|
|
|
|
|
|
|
|
|
|
|
# Several bogus test cases.
|
|
|
|
|
|
|
|
AT_DATA([missing-closing-quote.la],
|
|
|
|
[[# missing-closing-quote.la - a libtool library file
|
|
|
|
# Generated by libtool
|
|
|
|
dlname='module.so
|
|
|
|
library_names='module.so module.so module.so'
|
|
|
|
old_library='module.a'
|
|
|
|
installed=no
|
|
|
|
shouldnotlink=yes
|
|
|
|
libdir='/somewhere'
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([wrong-quotes.la],
|
|
|
|
[[# wrong-quotes.la - a libtool library file
|
|
|
|
# Generated by libtool
|
syntax-check: fix violations and implement sc_useless_quotes_in_assignment.
Contrary to popular belief, Bourne shell does not resplit RHS of
assignments after expansion, so if there are no unquoted shell
metacharacters or whitespace, the quotes are useless.
* cfg.mk (_sc_search_regexp_or_exclude): A variation of gnulib's
_sc_search_regexp that also allows individual exclusions at the
site of what would otherwise match by adding a comment.
(sc_useless_quotes_in_assignment): New syntax-check rule to
ensure we don't reintroduce useless quoted assignments.
* bootstrap, bootstrap.conf, build-aux/edit-readme-alpha,
build-aux/general.m4sh, build-aux/getopt.m4sh,
build-aux/ltmain.m4sh, build-aux/options-parser, configure.ac,
doc/libtool.texi, libtoolize.m4sh, m4/libtool.m4, m4/ltdl.m4,
m4/ltoptions.m4, tests/cwrapper.at, tests/defs.m4sh,
tests/lalib-syntax.at, tests/libtoolize.at,
tests/lt_dlopenext.at, tests/mdemo/configure.ac,
tests/mdemo2/configure.ac, tests/need_lib_prefix.at,
tests/no-executables.at, tests/quote.test, tests/suffix.test:
Remove spurious quotes.
Signed-off-by: Gary V. Vaughan <gary@gnu.org>
2011-11-16 19:59:01 +08:00
|
|
|
dlname=module.so
|
2009-12-09 14:28:59 +08:00
|
|
|
library_names='module.so module.so module.so'
|
|
|
|
old_library='module.a'
|
|
|
|
installed=no
|
|
|
|
shouldnotlink=yes
|
|
|
|
libdir='/somewhere'
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([no-dlname.la],
|
|
|
|
[[# no-dlname.la - a libtool library file
|
|
|
|
# Generated by libtool
|
|
|
|
installed=no
|
|
|
|
shouldnotlink=yes
|
|
|
|
libdir='/somewhere'
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([nonexistent-dlname.la],
|
|
|
|
[[# nonexistent-dlname.la - a libtool library file
|
|
|
|
# Generated by libtool
|
|
|
|
dlname='does-not-exist.so'
|
|
|
|
installed=no
|
|
|
|
shouldnotlink=yes
|
|
|
|
libdir='/somewhere'
|
|
|
|
]])
|
|
|
|
|
|
|
|
for file in ./missing-closing-quote.la ./wrong-quotes.la \
|
|
|
|
./no-dlname.la ./nonexistent-dlname.la; do
|
|
|
|
LT_AT_EXEC_CHECK([./main], [1], [stdout], [ignore], [$file])
|
tests: use $GREP throughout.
Trust the user, and use $GREP from TESTS_EVVIRONMENT uniformly.
* Makefile.am (TESTS_ENVIRONMENT): Add GREP setting.
* tests/am-subdir.at, tests/archive-in-archive.at, tests/bindir.at,
tests/configure-iface.at, tests/cwrapper.at, tests/darwin.at,
tests/demo.at, tests/destdir.at, tests/dumpbin-symbols.at,
tests/early-libtool.at, tests/execute-mode.at, tests/export-def.at,
tests/export.at, tests/f77demo.at, tests/fcdemo.at, tests/flags.at,
tests/help.at, tests/inherited_flags.at, tests/install.at,
tests/lalib-syntax.at, tests/libtool.at, tests/libtoolize.at,
tests/localization.at, tests/lt_dladvise.at, tests/lt_dlopen.at,
tests/lt_dlopenext.at, tests/ltdl-api.at, tests/ltdl-libdir.at,
tests/mdemo.at, tests/old-m4-iface.at, tests/pic_flag.at,
tests/resident.at, tests/runpath-in-lalib.at, tests/search-path.at,
tests/static.at, tests/sysroot.at, tests/template.at,
tests/testsuite.at, tests/versioning.at: Replace all hardcoded grep
invocations with $GREP.
Signed-off-by: Gary V. Vaughan <gary@gnu.org>
2013-10-30 12:39:06 +08:00
|
|
|
AT_CHECK([$GREP 'plugin failed to open' stdout], [], [ignore])
|
2009-12-09 14:28:59 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
AT_CLEANUP
|