From: Stefano Lattarini Date: Thu, 15 Dec 2011 22:12:07 +0000 (+0100) Subject: tests: fix spurious failure in 'lex3.test' X-Git-Tag: ng-0.5a~89^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18bdec7225f41cda755881f660ea4bea814538fa;p=thirdparty%2Fautomake.git tests: fix spurious failure in 'lex3.test' * tests/lex3.test (foo.l): Remove duplicated definition of `yywrap'. Problem introduced in merge `v1.11-1579-g8d3466c'. --- diff --git a/ChangeLog b/ChangeLog index 4c17eb444..39ab3b16d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-12-15 Stefano Lattarini + + tests: fix spurious failure in 'lex3.test' + * tests/lex3.test (foo.l): Remove duplicated definition of + `yywrap'. Problem introduced in merge `v1.11-1579-g8d3466c'. + 2011-12-09 Jim Meyering Stefano Lattarini diff --git a/tests/lex3.test b/tests/lex3.test index e8f02004d..46f0b9f9d 100755 --- a/tests/lex3.test +++ b/tests/lex3.test @@ -49,12 +49,6 @@ int main (void) return 1; } -/* Avoid possible link errors. */ -int yywrap (void) -{ - return 1; -} - /* Avoid possible link errors. */ int yywrap (void) {