summaryrefslogtreecommitdiff
path: root/libs/honeysuckle/src/tests/tests_main.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-03-02 00:20:38 -0600
committersanine <sanine.not@pm.me>2023-03-02 00:20:38 -0600
commit5bb783912ac384156b8abbe6e83a5a61da73881d (patch)
treec160295a01871d8e27beadac5fd1d3b9b0308e07 /libs/honeysuckle/src/tests/tests_main.c
parentfb0b24647350df9514c5db6f2330921f97804731 (diff)
fully remove honeysuckle and stop building cglm
Diffstat (limited to 'libs/honeysuckle/src/tests/tests_main.c')
-rw-r--r--libs/honeysuckle/src/tests/tests_main.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/libs/honeysuckle/src/tests/tests_main.c b/libs/honeysuckle/src/tests/tests_main.c
deleted file mode 100644
index 26af7cc..0000000
--- a/libs/honeysuckle/src/tests/tests_main.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#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;
-}