]> git.saurik.com Git - bison.git/commitdiff
* tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
authorJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 04:12:48 +0000 (04:12 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 04:12:48 +0000 (04:12 +0000)
it was double-quoted.

ChangeLog
tests/testsuite.at

index 45a463117ab66726d6775809a100fb3f5678fb6b..b7b1f3767c3f30187fdb86b08f6ba3eb49bf943c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-11-10  Joel E. Denny  <jdenny@ces.clemson.edu>
 
+       * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
+       it was double-quoted.
        * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
        grammar is maintained with Bison's highest standards.
        * src/getargs.c: Fix some typos in Doxygen comments.
index 1f93afdc5b61a4067598acaac2882bc479c357be..1607c7207a1bd099062cba91031122cd7fac625e 100644 (file)
@@ -25,7 +25,7 @@ m4_pushdef([ORIGINAL_AT_CHECK], m4_defn([AT_CHECK]))
 m4_pushdef([AT_CHECK],
 [ORIGINAL_AT_CHECK(
    m4_if(m4_quote(m4_substr(m4_quote($1), 0, 5)), [bison],
-        m4_if([$2], [0], [], [$2], [], [],
+        m4_if(m4_quote($2), [0], [], m4_quote($2), [], [],
               [[VALGRIND_OPTS="$VALGRIND_OPTS --leak-check=summary --show-reachable=no"; export VALGRIND_OPTS; ]]))$@)])
 
 # Testing resistance to user bugs.