]> git.saurik.com Git - bison.git/blobdiff - tests/conflicts.at
tests: use assert instead of plain abort.
[bison.git] / tests / conflicts.at
index 54df05112fe6344f3e5964319fb0dd1cd80d2b56..cafa3338afc54ff95004c16229181d828eab0122 100644 (file)
@@ -57,6 +57,7 @@ AT_DATA_GRAMMAR([input.y],
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <assert.h>
 
 #define YYERROR_VERBOSE 1
 ]AT_YYERROR_DEFINE[
@@ -67,8 +68,7 @@ static int
 yylex (void)
 {
   static size_t toknum;
-  if (! (toknum <= strlen (input)))
-    abort ();
+  assert (toknum <= strlen (input));
   return input[toknum++];
 }