libtool-patches
[Top][All Lists]
Advanced

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

Re: fail.at failing on HP-UX


From: Ralf Wildenhues
Subject: Re: fail.at failing on HP-UX
Date: Sat, 13 May 2006 20:14:39 +0200
User-agent: Mutt/1.5.11+cvs20060403

* Albert Chin wrote on Wed, May 03, 2006 at 07:02:59PM CEST:
> On Wed, May 03, 2006 at 06:16:46PM +0200, Ralf Wildenhues wrote:
> > 
> > This should work.  Let's just hope there is no legacy system where both
> > "test -x" doesn't work and the linker outputs broken binaries.

> It works fine. Thanks.

Applied.  Sorry again.

Cheers,
Ralf

        * tests/fail.at: Use "test -x" if available, for testing of
        executables; code modified from Autoconf's AS_EXECUTABLE_P.
        Reported by Albert Chin <address@hidden>.

Index: tests/fail.at
===================================================================
RCS file: /cvsroot/libtool/libtool/tests/fail.at,v
retrieving revision 1.3
diff -u -r1.3 fail.at
--- tests/fail.at       5 Feb 2006 09:56:44 -0000       1.3
+++ tests/fail.at       3 May 2006 16:11:23 -0000
@@ -28,6 +28,17 @@
 [AT_CHECK([if $1; then (exit 1); else :; fi], [0], [ignore], [ignore])
 ])
 
+AT_DATA([script],
+[[#! /bin/sh
+exit 0
+]])
+chmod +x script
+if test -x script >/dev/null 2>&1; then
+  test_x="test -x"
+else
+  test_x=:
+fi
+
 # compile failure
 echo 'choke me' > a.c
 FAIL_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c a.c])
@@ -52,9 +63,9 @@
 echo 'int not_main(void) { return 0; }' > a.c
 $CC $CPPFLAGS $CFLAGS -c a.c
 FAIL_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a a.$OBJEXT])
-AT_CHECK([test -f a || test -f a$EXEEXT], [1])
+AT_CHECK([{ test -f a && $test_x a; } || { test -f a$EXEEXT && $test_x 
a$EXEEXT; }], [1])
 FAIL_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a a.$OBJEXT -static])
-AT_CHECK([test -f a || test -f a$EXEEXT], [1])
+AT_CHECK([{ test -f a && $test_x a; } || { test -f a$EXEEXT && $test_x 
a$EXEEXT; }], [1])
 
 # shared library creation failure
 case $build_libtool_libs in yes)




reply via email to

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