From b38d8739634b8bb3a5a40fdd4aed2e52514b8202 Mon Sep 17 00:00:00 2001 From: hugo303 Date: Tue, 3 Feb 2009 17:03:08 +0000 Subject: [PATCH] * New file for exit tests, forgot in previous checkin. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@531 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- tests/check_check_exit.c | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tests/check_check_exit.c diff --git a/tests/check_check_exit.c b/tests/check_check_exit.c new file mode 100644 index 0000000..a738519 --- /dev/null +++ b/tests/check_check_exit.c @@ -0,0 +1,51 @@ +#include +#include +#include +#include + +#include "check.h" +#include "check_check.h" + +START_TEST(test_early_exit_normal) +{ + exit(0); + fail("Should've exitted..."); +} +END_TEST + +START_TEST(test_early_exit_with_allowed_error) +{ + exit(-1); + fail("Should've exitted..."); +} +END_TEST + +START_TEST(loop_early_exit_normal) +{ + exit(0); + fail("Should've exitted..."); +} +END_TEST + +START_TEST(loop_early_exit_allowed_exit) +{ + exit(-2); + fail("Should've exitted..."); +} +END_TEST + +Suite *make_exit_suite(void) +{ + Suite *s; + TCase *tc; + + s = suite_create("Exit"); + tc = tcase_create("Core"); + + suite_add_tcase (s, tc); + tcase_add_test(tc,test_early_exit_normal); + tcase_add_exit_test(tc,test_early_exit_with_allowed_error,-1); + tcase_add_loop_test(tc,loop_early_exit_normal,0,5); + tcase_add_loop_exit_test(tc,loop_early_exit_allowed_exit,-2,0,5); + return s; +} -- 2.40.0