bug-autoconf
[Top][All Lists]
Advanced

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

Re: [GNU Autoconf 2.59c] testsuite: 1 6 7 11 50 51 52 53 54 55 56 57 59


From: Ralf Menzel
Subject: Re: [GNU Autoconf 2.59c] testsuite: 1 6 7 11 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 70 71 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 failed
Date: Wed, 25 May 2005 20:47:06 +0200
User-agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.4 (Reasonable Discussion, usg-unix-v)

Hello,

Stepan Kasal <address@hidden> writes:
> I introduced the problem by the following command
>       
> awk '/^ \t*case/,/^ \t*esac/{if(/\[\^.*\)/) exit(1)}'
>
> which I added to autotest.  The testsuite is not working properly.

Hm, this seems to be part of the problem. See below.

> On Wed, May 25, 2005 at 02:21:45PM +0200, Ralf Menzel wrote:
>> I'm using a Solaris 9 machine and the Sun Workshop 9.0 compiler:
>
> Yes, Solaris' /bin/awk has a very limited capabilities.  Every time
> I try to use awk, I run into this.  Unfortunately, I don't have access
> to Solaris.
[snip]
> What may be the root of the problem?
> - the commma in:   /re1/, /re2/
> - the regex in if:   if(/re/)

Seems, like that is the problem. The Solaris awk expects an expression
as the argument of if. Since `if(/re/)' should be equivalent to
`if($0 ~ /re/)' I tried the following patch:

--- snip ---
Index: tests/local.at
===================================================================
RCS file: /cvsroot/autoconf/autoconf/tests/local.at,v
retrieving revision 1.15
diff -u -p -r1.15 local.at
--- tests/local.at      17 May 2005 09:29:05 -0000      1.15
+++ tests/local.at      25 May 2005 18:03:00 -0000
@@ -53,7 +53,7 @@ AT_CHECK([$at_diff "$1" "$2"])
 m4_define([AT_CHECK_SHELL_SYNTAX],
 [AS_IF([test x"$ac_cv_sh_n_works" != xno],
   [AT_CHECK([/bin/sh -n $1], 0)], [$2])
-AT_CHECK([awk '/^[ \t]*case/,/^[ \t]*esac/{if(/\@<:@\^.*\)/) exit(1)}' $1])])
+AT_CHECK([awk '/^[ \t]*case/,/^[ \t]*esac/{if(@S|@0 ~ /\@<:@\^.*\)/) exit(1)}' 
$1])])
 
 m4_define([AT_CHECK_PERL_SYNTAX],
 [AT_CHECK([autom4te_perllibdir=$abs_top_srcdir/lib $PERL -c 
$abs_top_builddir/bin/$1],
--- snip ---

This reduced the number of failed tests from 151 to 179.
Shall I send the new testsuite.log?

> - or, most likely, the "exit"

I don't think so.

[snip]
> I'll look at it again later.

Thanks,
Ralf





reply via email to

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