check_check_main.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Check: a unit test framework for C
  3. * Copyright (C) 2001, 2002 Arien Malec
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
  18. * MA 02110-1301, USA.
  19. */
  20. #include "../lib/libcompat.h"
  21. #include <stdlib.h>
  22. #include <stdio.h>
  23. #include <check.h>
  24. #include "check_check.h"
  25. int main (void)
  26. {
  27. int number_failed;
  28. SRunner *sr;
  29. fork_setup();
  30. setup_fixture();
  31. setup();
  32. sr = srunner_create (make_master_suite());
  33. srunner_add_suite(sr, make_list_suite());
  34. srunner_add_suite(sr, make_msg_suite());
  35. srunner_add_suite(sr, make_log_suite());
  36. srunner_add_suite(sr, make_log_internal_suite());
  37. srunner_add_suite(sr, make_limit_suite());
  38. srunner_add_suite(sr, make_fork_suite());
  39. srunner_add_suite(sr, make_fixture_suite());
  40. srunner_add_suite(sr, make_pack_suite());
  41. srunner_add_suite(sr, make_tag_suite());
  42. #if defined(HAVE_FORK) && HAVE_FORK==1
  43. srunner_add_suite(sr, make_exit_suite());
  44. #endif
  45. srunner_add_suite(sr, make_selective_suite());
  46. printf ("Ran %d tests in subordinate suite\n", sub_ntests);
  47. srunner_run_all (sr, CK_VERBOSE);
  48. cleanup();
  49. fork_teardown();
  50. teardown_fixture();
  51. number_failed = srunner_ntests_failed(sr);
  52. srunner_free(sr);
  53. return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  54. }