]> git.saurik.com Git - bison.git/blobdiff - tests/named-refs.at
tests: use assert instead of plain abort.
[bison.git] / tests / named-refs.at
index c9b91a0e1dbf2d4517b39f0dd6a31108b4fe0da1..3ccf1f6669067dc818249cf6245d6623877f4a4f 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;
 }
 ]])