]> git.saurik.com Git - bison.git/blobdiff - tests/named-refs.at
Merge remote-tracking branch 'origin/maint'
[bison.git] / tests / named-refs.at
index 0e6f60c8eeabafd79c32795494c60661f9db8d26..2484c438756e9be79af73e78d901f8fb42fde438 100644 (file)
@@ -162,10 +162,8 @@ int main (int argc, const char **argv)
     }
   status = yyparse ();
   fclose (input);
-  if (global_result != result)
-    abort ();
-  if (global_count != count)
-    abort ();
+  assert (global_result == result);
+  assert (global_count == count);
   return status;
 }
 ]])