]> git.saurik.com Git - bison.git/commitdiff
tests: fix maintainer-xml-check for recent changes.
authorJoel E. Denny <jdenny@clemson.edu>
Tue, 23 Feb 2010 02:52:39 +0000 (21:52 -0500)
committerJoel E. Denny <jdenny@clemson.edu>
Tue, 23 Feb 2010 02:55:37 +0000 (21:55 -0500)
* tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
output file whose name conflicts with a previous output file
is now never generated.
(cherry picked from commit a3d760ef5d7d9bcab78268f5117c39566aa0345c)

ChangeLog
tests/output.at

index 379afe21e94cd7dba9d45de4e2faa951ebe1fe76..b3f2a27a6fe94a481cc225bed6bb9445d2beb349 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-02-22  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       tests: fix maintainer-xml-check for recent changes.
+       * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
+       AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
+       output file whose name conflicts with a previous output file
+       is now never generated.
+
 2010-02-22  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        portability: fix several issues with M4 subprocess.
 2010-02-22  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        portability: fix several issues with M4 subprocess.
index bb6d4491153ea5d4a6dde8ae2a90f61374b120eb..564674e1055cc3d9bef2273b210200471dd16d5f 100644 (file)
@@ -146,7 +146,11 @@ foo: {};
 ]])
 
 [cp ]$1[ expout]
 ]])
 
 [cp ]$1[ expout]
-AT_BISON_CHECK([$3 $1], $5, [], [$4])
+# Because an output file name conflict is still a warning, Bison exits
+# with status 0, so AT_BISON_CHECK does not realize that there may be no
+# output file against which to check the XML.  AT_BISON_CHECK_NO_XML
+# avoids that problem.
+AT_BISON_CHECK_NO_XML([$3 $1], $5, [], [$4])
 AT_CHECK([[cat $1]], [[0]], [expout])
 AT_CLEANUP
 ])
 AT_CHECK([[cat $1]], [[0]], [expout])
 AT_CLEANUP
 ])