Re: [Autogen-users] 5.17.3 Testsuite error FAIL: error.test
Brought to you by:
bkorb
From: Bruce K. <bru...@gm...> - 2013-04-13 16:17:55
|
Hi Andreas, On Fri, Apr 12, 2013 at 11:58 PM, Andreas Metzler <ame...@do...> wrote: > Good morning, > > there is a testsuite error with 5.17.3 on ix86: > ----------------------- > make[5]: Entering directory `/tmp/AUTOGEN/autogen-5.17.3/agen5/test' > FAIL: error.test *** error.base6 Sat Apr 13 08:35:34 2013 --- error.res6 Sat Apr 13 08:35:34 2013 *************** *** 10,12 **** --- 10,13 ---- ) ================================= + ERROR: Unbound variable: stumble-over-unbound-variable The Guile library injected a new error message I was not expecting. I try to sed away the varying Guile messages, but every now and then, there is a new one. This is a new one. This patch will get rid of the failure: diff --git a/agen5/test/error.test b/agen5/test/error.test index a4db7ea..063f164 100755 --- a/agen5/test/error.test +++ b/agen5/test/error.test @@ -228,7 +228,7 @@ EOF # print file and line, but it was made just too hard. Strip out all # the Guile library error messages. :( # -${SED} -n '/^Scheme evaluation error./,$p' ${testname}.err6 | \ +${SED} -n '/^Scheme evaluation error./,/^==========/p' ${testname}.er r6 | \ ${SED} "/^${testname}\.tpl6:7:4:/d" > ${testname}.res6 cmp -s ${testname}.base6 ${testname}.res6 || \ |