libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] skip demo-nopic on hppa


From: Scott James Remnant
Subject: [PATCH] skip demo-nopic on hppa
Date: Fri, 31 Oct 2003 11:54:24 +0000

Another nice simple one.  HPPA machines don't like non-PIC shared
libraries, so testing whether they work or not seems a bit ...
pointless.  And it stops "make check" from showing success, which is
always an upsetting end to a day.

I think I've got the re-implementation right given Gary's recent blitz
of the tests.  This looks neater than any conditionals within the
Makefile.am anyway, and skips the right number of tests.

Origin: me, so copyright assigned.

Scott
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?
diff -rup libtool-CVS~/ChangeLog libtool-CVS/ChangeLog
--- libtool-CVS~/ChangeLog      2003-10-30 14:40:11.000000000 +0000
+++ libtool-CVS/ChangeLog       2003-10-31 11:51:22.000000000 +0000
@@ -0,0 +1,5 @@
+2003-10-31  Scott James Remnant  <address@hidden>
+
+       * tests/demo-nopic.test: Skip test on hppa, which don't like
+       non-PIC shared libraries.
+
diff -rup libtool-CVS~/tests/demo-nopic.test libtool-CVS/tests/demo-nopic.test
--- libtool-CVS~/tests/demo-nopic.test  2003-10-14 22:46:13.000000000 +0100
+++ libtool-CVS/tests/demo-nopic.test   2003-10-31 11:50:32.000000000 +0000
@@ -27,6 +27,12 @@ if test -z "$srcdir"; then
 fi
 . $srcdir/defs || exit 1
 
+case "$host" in
+hppa*)
+       func_skip "HPPA doesn't like non-PIC shared libs"
+       ;;
+esac
+
 func_rmprefixdir
 func_cd "demo"
 func_make_distclean

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]