>From 74aaea6a2aa753e7a3e6534f4c03de1ba193bd88 Mon Sep 17 00:00:00 2001 From: Peter O'Gorman Date: Fri, 11 Jun 2010 23:32:53 -0500 Subject: [PATCH 1/4] Skip resident test if not building shared. * tests/resident.at: Skip if only static. --- ChangeLog | 5 +++++ tests/resident.at | 4 ++++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index 823c6d3..a19817c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-06-12 Peter O'Gorman + + Skip resident test if not building shared. + * tests/resident.at: Skip if only static. + 2010-06-11 Peter O'Gorman Skip bindir install test if we're not building shared. diff --git a/tests/resident.at b/tests/resident.at index 2a85204..ad72967 100644 --- a/tests/resident.at +++ b/tests/resident.at @@ -27,6 +27,10 @@ AT_SETUP([resident modules]) AT_KEYWORDS([libltdl]) +# Skip if we're not building shared libs. +eval "`$LIBTOOL --config | grep '^build_libtool_libs='`" +AT_CHECK([test "$build_libtool_libs" = yes || (exit 77)]) + AT_DATA([main.c], [[#include #include -- 1.7.0.1