From: Scott James Remnant Date: Fri, 23 Jan 2004 06:03:32 +0000 (+0000) Subject: * tests/demo-nopic.test: Skip test on hppa, which don't like X-Git-Tag: release-1-5-2~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a59963d7e5a88d57c4560965ad38f327cc0f468f;p=thirdparty%2Flibtool.git * tests/demo-nopic.test: Skip test on hppa, which don't like non-PIC shared libraries. --- diff --git a/ChangeLog b/ChangeLog index 500675fe8..aa0e0eba0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-01-23 Scott James Remnant + + * tests/demo-nopic.test: Skip test on hppa, which don't like + non-PIC shared libraries. + 2004-01-23 Scott James Remnant * m4/libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER) [linux]: Include diff --git a/tests/demo-nopic.test b/tests/demo-nopic.test index f2a4fa662..ffd6cbed6 100755 --- a/tests/demo-nopic.test +++ b/tests/demo-nopic.test @@ -10,6 +10,14 @@ if test -z "$srcdir"; then fi . $srcdir/defs || exit 1 +# This doesn't work on hppa +HOST=`../config.guess` +case "$HOST" in +hppa*) + echo "Not running on hppa, it doesn't like non-PIC shared libs" 2>&1 + exit 77 +esac + # Maybe we have a VPATH build, in which case, create a new subdir. test -d ../demo || mkdir ../demo