]> git.saurik.com Git - bison.git/blobdiff - tests/cxx-type.at
(getargs) [MSDOS]: Don't assume optarg != NULL
[bison.git] / tests / cxx-type.at
index 7e58fa4a4d83443e9e98eb524d12704dfedd790b..41ff56049c5ca844fa91c8dea6e39efb686a219d 100644 (file)
@@ -91,7 +91,6 @@ declarator : ID               { printf ("\"%s\" ", ]$[1); }
 
 %%
 
-#include <assert.h>
 #include <ctype.h>
 #include <stdlib.h>
 #include <string.h>
@@ -99,7 +98,8 @@ declarator : ID               { printf ("\"%s\" ", ]$[1); }
 int
 main (int argc, char** argv)
 {
-  assert (argc == 2);
+  if (argc != 2)
+    abort ();
   if (!freopen (argv[1], "r", stdin))
     abort ();
   exit (yyparse ());
@@ -241,11 +241,11 @@ z q +
 ]])
 
 m4_define([_AT_GLR_STDERR],
-[[parse error
+[[syntax error
 ]])
 
 m4_define([_AT_VERBOSE_GLR_STDERR],
-[[parse error, unexpected ID, expecting '=' or '+' or ')'
+[[syntax error, unexpected ID, expecting '=' or '+' or ')'
 ]])
 
 ## ---------------------------------------------------- ##