autoconf-patches
[Top][All Lists]
Advanced

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

don't fail test #132


From: Jim Meyering
Subject: don't fail test #132
Date: Sat, 27 Oct 2007 17:40:51 +0200

Hi Ralf,

Since you recently made a change in this area,
I'd like to make sure that this is ok with you
before I push.

The problem is that test #132 now fails due to
a configure script in a directory earlier than "." in PATH.
Normally, I would have changed this
  /bin/sh configure ...
to this:
  /bin/sh ./configure ...
but then it'd be identical to the preceding line,
so this patch simply removes the offending test.

Jim

diff --git a/ChangeLog b/ChangeLog
index 2a26dc0..5c7ff83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-10-27  Jim Meyering  <address@hidden>

+       Don't fail test #132 when there's a configure script in your PATH.
+       * tests/torture.at: Don't depend on "/bin/sh configure" to run
+       ./configure: there may be another configure script earlier in PATH.
+
        Make inter-release --version output more useful.
        Now, each unofficial build has a version "number" like 2.61a-19-58dd,
        which indicates that it is built using the 19th change set
diff --git a/tests/torture.at b/tests/torture.at
index 4ffaafb..3368103 100644
--- a/tests/torture.at
+++ b/tests/torture.at
@@ -1160,7 +1160,6 @@ chmod a-w inner/innermost inner
 AT_CHECK([./configure --help=recursive | grep " INNER "],     0, [ignore])
 AT_CHECK([./configure --help=recursive | grep " INNERMOST "], 0, [ignore])
 AT_CHECK([/bin/sh ./configure --help=recursive | grep " INNERMOST "], 0, 
[ignore])
-AT_CHECK([/bin/sh configure --help=recursive | grep " INNERMOST "], 0, 
[ignore])
 AT_CHECK([PATH=.$PATH_SEPARATOR$PATH; export PATH; configure --help=recursive 
| grep " INNERMOST "], 0, [ignore])
 chmod u+w inner inner/innermost

--




reply via email to

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