]> git.saurik.com Git - bison.git/commitdiff
tests: don't abuse AT_BISON_CHECK.
authorJoel E. Denny <jdenny@clemson.edu>
Sun, 27 Sep 2009 18:37:00 +0000 (14:37 -0400)
committerJoel E. Denny <jdenny@clemson.edu>
Sun, 27 Sep 2009 18:37:00 +0000 (14:37 -0400)
* tests/regression.at (parse-gram.y: LALR = IELR): Move
additional shell commands outside of AT_BISON_CHECK.

ChangeLog
tests/regression.at

index f24be8a6cba4be5675150d507faa4dcead7d9ffa..a0b43145452ecab48ac6186a18cc97eb49d7c7fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-27  Joel E. Denny  <jdenny@clemson.edu>
+
+       tests: don't abuse AT_BISON_CHECK.
+       * tests/regression.at (parse-gram.y: LALR = IELR): Move
+       additional shell commands outside of AT_BISON_CHECK.
+
 2009-09-26  Joel E. Denny  <jdenny@clemson.edu>
 
        tests: check that parse-gram.y's IELR and LALR are identical.
index 2482189ce6ca167a35bc9fd2680e1350314c57ea..cfc071e632092cfbeb34689db8305f0b5653ec14 100644 (file)
@@ -1252,9 +1252,11 @@ AT_SETUP([[parse-gram.y: LALR = IELR]])
 # Avoid tests/bison's dark magic by processing a local copy of the
 # grammar.  Avoid differences in synclines by telling bison that the
 # output files have the same name.
-cp $abs_top_srcdir/src/parse-gram.y input.y
-AT_BISON_CHECK([[-o input.c -Dlr.type=lalr input.y && mv input.c lalr.c]])
-AT_BISON_CHECK([[-o input.c -Dlr.type=ielr input.y && mv input.c ielr.c]])
+[cp $abs_top_srcdir/src/parse-gram.y input.y]
+AT_BISON_CHECK([[-o input.c -Dlr.type=lalr input.y]])
+[mv input.c lalr.c]
+AT_BISON_CHECK([[-o input.c -Dlr.type=ielr input.y]])
+[mv input.c ielr.c]
 AT_CHECK([[diff -u lalr.c ielr.c]])
 
 AT_CLEANUP