From db81b925d776103326128bf629cbdda576a223e7 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 16 Apr 2022 11:55:09 -0500 Subject: move 3rd-party librarys into libs/ and add built-in honeysuckle --- libs/honeysuckle/src/tests/tests_main.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 libs/honeysuckle/src/tests/tests_main.c (limited to 'libs/honeysuckle/src/tests/tests_main.c') diff --git a/libs/honeysuckle/src/tests/tests_main.c b/libs/honeysuckle/src/tests/tests_main.c new file mode 100644 index 0000000..26af7cc --- /dev/null +++ b/libs/honeysuckle/src/tests/tests_main.c @@ -0,0 +1,33 @@ +#include "hs_tests.h" + +/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + * + * RUN TESTS + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + */ + +int tests_run = 0; +int tests_run_old = 0; +int tests_failed = 0; + +int main() +{ + printf("================ start tests ================\n\n"); + + mu_run_suite(hs_type_to_string_tests); + mu_run_suite(hs_parse_args_tests); + mu_run_suite(hs_parse_overloaded_tests); + mu_run_suite(hs_create_table_tests); + //mu_run_suite(hs_create_enum_tests); + mu_run_suite(hs_process_table_tests); + mu_run_suite(hs_throw_error_tests); + + mu_run_suite(hs_pushstring_tests); + + printf("\n=============== tests finished ===============\n\n"); + + const char *color = tests_failed == 0 ? GREEN : RED; + printf("%sran %d tests, %d failed\n" RESET, color, tests_run, tests_failed); + return tests_failed; +} -- cgit v1.2.1