]> git.saurik.com Git - bison.git/commitdiff
tests: portability fix.
authorAkim Demaille <demaille@gostai.com>
Wed, 26 Aug 2009 09:53:18 +0000 (11:53 +0200)
committerAkim Demaille <demaille@gostai.com>
Wed, 26 Aug 2009 11:21:18 +0000 (13:21 +0200)
* tests/input.at (Bad escapes in literals): Don't expect "echo
'\0'" to output \ then 0.

ChangeLog
tests/input.at

index 89f863f7baaf70beaf8ccef94e30392413b027ec..40df1d40276e4f554948530e152475ce5d59eb04 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-08-26  Akim Demaille  <demaille@gostai.com>
+
+       tests: portability fix.
+       * tests/input.at (Bad escapes in literals): Don't expect "echo
+       '\0'" to output \ then 0.
+
 2009-08-26  Joel E. Denny  <jdenny@clemson.edu>
 
        Actually handle the yytable zero value correctly this time.
index f91c0fb8070135347134f5ec1bc17f9e08a8e5c5..36a6d4089dd8d2a5c8d4afd1f5b71d3d6c01cbe9 100644 (file)
@@ -1233,7 +1233,14 @@ start: '\777' '\0' '\xfff' '\x0'
        '\uffff' '\u0000' '\Uffffffff' '\U00000000'
        '\ ' '\A';
 ]])
-echo 'start: "\T\F\0\1" ;' | tr 'TF01' '\011\014\0\1' >> input.y
+
+# It is not easy to create special characters, we can only trust tr.
+# Beside we cannot even expect "echo '\0'" to output two characters
+# (well three with \n): at least Bash 3.2 converts the two-character
+# sequence "\0" into a single NUL character.
+#
+# Z for 0, O for 1.
+echo 'start: "\T\F\Z\O" ;' | tr 'TFZO' '\011\014\0\1' >> input.y
 
 AT_BISON_CHECK([input.y], [1], [],
 [[input.y:2.9-12: invalid number after \-escape: 777