bug-autoconf
[Top][All Lists]
Advanced

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

Two testsuite failure in CVS autoconf


From: Nicolas Joly
Subject: Two testsuite failure in CVS autoconf
Date: Thu, 1 Feb 2001 11:37:27 +0100
User-agent: Mutt/1.2.4i

Hi,

I checked CVS autoconf today on my Tru64 v5.1 machine, and found 2 new
failures : AC_TRY_*, AC_CHECK_SIZEOF.

I got an infinite loop for AC_CHECK_SIZEOF test. I will investigate
further ...

For AC_TRY_* test, there is a small typo. Here follow a patch :

Index: tests/base.at
===================================================================
RCS file: /cvs/autoconf/tests/base.at,v
retrieving revision 1.16
diff -u -r1.16 base.at
--- tests/base.at       2001/01/31 15:00:36     1.16
+++ tests/base.at       2001/02/01 10:34:58
@@ -228,7 +228,7 @@
 
 if AC_TRY_COMMAND([(echo "The Cat in the Hat"
                     echo "The Hat in the Cat" >&2)
-                  | grep ^The\ Cat\ in\ The\ Hat\$ >/dev/null]); then
+                  | grep ^The\ Cat\ in\ the\ Hat\$ >/dev/null]); then
   # Cool!
 else
   AC_MSG_ERROR([Didn't see the Cat in the Hat!])
@@ -236,7 +236,7 @@
 
 if AC_TRY_COMMAND([(echo "The Cat in the Hat"
                     echo "The Hat in the Cat" >&2)
-                  | grep ^The\ Hat\ in\ The\ Cat\$ >/dev/null]); then
+                  | grep ^The\ Hat\ in\ the\ Cat\$ >/dev/null]); then
   AC_MSG_ERROR([Saw the Hat in the Cat!])
 fi
 ]])

-- 
Nicolas Joly

Informatique Scientifique
Institut Pasteur, Paris.



reply via email to

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