use a macro

Original commit message from CVS:
use a macro
This commit is contained in:
Thomas Vander Stichele 2007-02-28 11:58:16 +00:00
parent 2c67c89457
commit e1566885fa

View file

@ -98,19 +98,4 @@ states_suite (void)
return s;
}
int
main (int argc, char **argv)
{
int nf;
Suite *s = states_suite ();
SRunner *sr = srunner_create (s);
gst_check_init (&argc, &argv);
srunner_run_all (sr, CK_NORMAL);
nf = srunner_ntests_failed (sr);
srunner_free (sr);
return nf;
}
GST_CHECK_MAIN (states);