automake-patches
[Top][All Lists]
Advanced

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

FYI: skip conflnk3.test if test -e does not work.


From: Alexandre Duret-Lutz
Subject: FYI: skip conflnk3.test if test -e does not work.
Date: Tue, 13 Jan 2004 21:40:39 +0100
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux)

>>> "Alexandre" == Alexandre Duret-Lutz <address@hidden> writes:

[...]

 >> I _think_ the other test fails because it uses test -e, which is not
 >> supported in Solaris' /bin/sh:

 Alexandre> Surely that's it.  I'll change this test to skip platforms where
 Alexandre> `test -e' does not work.

I'm installing this on HEAD and branch-8.

2004-01-13  Alexandre Duret-Lutz  <address@hidden>

        * tests/conflnk3.test: Skip if `test -e' does not work.
        Report from Lars Hecking.

Index: tests/conflnk3.test
===================================================================
RCS file: /cvs/automake/automake/tests/conflnk3.test,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 conflnk3.test
--- tests/conflnk3.test 8 Jan 2004 20:22:43 -0000       1.1.2.1
+++ tests/conflnk3.test 13 Jan 2004 20:37:14 -0000
@@ -25,6 +25,11 @@
 
 set -e
 
+# Skip platforms where `test -e' does not work.  (Note that Changing
+# all `test -e' into `test -h' will not work when AC_CONFIG_LINKS
+# copies or hardlinks files.)
+test -e configure.in || exit 77
+
 cat > Makefile.am << 'END'
 SUBDIRS = sdir
 test: distdir


-- 
Alexandre Duret-Lutz





reply via email to

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