]> git.saurik.com Git - bison.git/commitdiff
portability: fix test suite for GCC 4.5's new #error message.
authorJoel E. Denny <jdenny@clemson.edu>
Wed, 31 Mar 2010 16:46:53 +0000 (12:46 -0400)
committerJoel E. Denny <jdenny@clemson.edu>
Sat, 3 Apr 2010 17:28:51 +0000 (13:28 -0400)
Reported by Tys Lefering at
<http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
* NEWS (2.4.3): Mention.
* tests/synclines.at (AT_TEST_SYNCLINE): Implement.

ChangeLog
NEWS
tests/synclines.at

index 4ba2eb67f219108a375cfd18f3d523ac5040f98f..507576bf01031ac035d5448835b6d7631156df2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-03-31  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       portability: fix test suite for GCC 4.5's new #error message.
+       Reported by Tys Lefering at
+       <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
+       * NEWS (2.4.3): Mention.
+       * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
+
 2010-03-30  Akim Demaille  <demaille@gostai.com>
 
        fix comments.
diff --git a/NEWS b/NEWS
index 31d7c79e39ac4a61b7873502333a3a4a5ce14e39..475096390041f9a1b00ed47fd319ad631bb78aef 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,8 @@ Bison News
 ** Problems with spawning M4 on at least FreeBSD 8 and FreeBSD 9 have
    been fixed.
 
+** Failures in the test suite for GCC 4.5 have been fixed.
+
 * Changes in version 2.4.2 (2010-03-20):
 
 ** Some portability problems that resulted in failures and livelocks
index 08b33c5fd2bdf97d41494457f97706fa0ad38130..a97543335c163e2dbc738c0e9208c0dbaf8f6b96 100644 (file)
@@ -71,7 +71,9 @@ AT_CHECK([[test "`cat stdout`" = 'syncline.c:1: @%:@error "1"' || exit 77]])
 AT_DATA([[input.y]], [$2])
 AT_BISON_CHECK([-o input.c input.y])
 AT_SYNCLINES_COMPILE([input.c])
-AT_CHECK([cat stdout], 0, [$3])
+# GCC 4.5 tells you the function within which #error appears, but
+# previous versions of gcc do not.
+AT_CHECK([grep -v ': In function ' stdout], 0, [$3])
 AT_CLEANUP
 ])