This is an automated email from the git hooks/post-receive script. ildumi pushed a commit to branch master in repository libtool.
The following commit(s) were added to refs/heads/master by this push: new 3ab12397 Update tests without aclocal to expect failure 3ab12397 is described below commit 3ab1239727fb29ad4a680fa375036a9c265cac72 Author: Ileana Dumitrescu <ileanadumitresc...@gmail.com> AuthorDate: Wed Sep 25 16:12:34 2024 +0300 Update tests without aclocal to expect failure Five tests use aclocal, but do not have a check for whether aclocal is available to use. This causes reported tests failures in Linux From Scratch and Darwin builds. * tests/standalone.at: Add AT_XFAIL_IF check for aclocal for all tests. * tests/subproject.at: Add AT_XFAIL_IF check for aclocal for last test. --- NEWS | 3 +++ tests/standalone.at | 4 ++++ tests/subproject.at | 1 + 3 files changed, 8 insertions(+) diff --git a/NEWS b/NEWS index f270563c..ce7a7bc8 100644 --- a/NEWS +++ b/NEWS @@ -24,6 +24,9 @@ NEWS - list of user-visible changes between releases of GNU Libtool - Update FSF office address with URL in each file's license block. + - Add checks for aclocal in standalone.at and subproject.at test files + that report failures in Linux From Scratch and Darwin builds. + * Noteworthy changes in release 2.5.2 (2024-08-29) [beta] diff --git a/tests/standalone.at b/tests/standalone.at index c3d2f00d..2a81a250 100644 --- a/tests/standalone.at +++ b/tests/standalone.at @@ -30,6 +30,7 @@ AT_SETUP([compiling softlinked libltdl]) LT_AT_CHECK_LIBTOOLIZE([--ltdl=.], [], [ignore]) LT_AT_CONFIGURE +AT_XFAIL_IF([test no = "$ACLOCAL"]) LT_AT_MAKE([all $tst_dist]) AT_CHECK([test -f libltdlc.la]) @@ -45,6 +46,7 @@ AT_SETUP([compiling copied libltdl]) LT_AT_CHECK_LIBTOOLIZE([--copy --ltdl=.], [], [ignore]) LT_AT_CONFIGURE +AT_XFAIL_IF([test no = "$ACLOCAL"]) LT_AT_MAKE([all $tst_dist]) AT_CHECK([test -f libltdlc.la]) @@ -62,6 +64,7 @@ prefix=`pwd`/_inst LT_AT_CHECK_LIBTOOLIZE([--copy --ltdl=.], [], [ignore]) LT_AT_CONFIGURE([--enable-ltdl-install --prefix=$prefix]) +AT_XFAIL_IF([test no = "$ACLOCAL"]) LT_AT_MAKE([all install $tst_dist]) AT_CHECK([test -f "$prefix/lib/libltdl.la"]) @@ -78,6 +81,7 @@ AT_SETUP([linking libltdl without autotools]) _LTDL_PROJECT_FILES([libltdl]) LT_AT_CHECK_LIBTOOLIZE([--copy --ltdl], [], [ignore]) +AT_XFAIL_IF([test no = "$ACLOCAL"]) LT_AT_MAKE([], [CC="$CC" LIBTOOLFLAGS="$LIBTOOLFLAGS" CPPFLAGS="$CPPFLAGS" ]dnl [CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ]dnl [CONFIGURE_OPTIONS="$configure_options"]) diff --git a/tests/subproject.at b/tests/subproject.at index 740897ea..a2f1b261 100644 --- a/tests/subproject.at +++ b/tests/subproject.at @@ -108,6 +108,7 @@ AT_SETUP([linking libltdl without autotools]) _LTDL_PROJECT_FILES([sub/ltdl]) LT_AT_LIBTOOLIZE([--copy --ltdl=sub/ltdl]) +AT_XFAIL_IF([test no = "$ACLOCAL"]) LT_AT_MAKE([], [CC="$CC" LIBTOOLFLAGS="$LIBTOOLFLAGS" CPPFLAGS="$CPPFLAGS" ]dnl [CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" SHELL="$SHELL" MAKE="${MAKE-make}" ]dnl [CONFIGURE_OPTIONS="$configure_options"])