From d5a53e85f99f017431f65a424acd4b35f7d15926 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 23 Dec 2024 17:42:18 +0900 Subject: [PATCH] Minor tweak to unit tests --- src/data_structures/test.c | 2 ++ src/test.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/data_structures/test.c b/src/data_structures/test.c index 044c15b..5bfa57b 100644 --- a/src/data_structures/test.c +++ b/src/data_structures/test.c @@ -94,6 +94,8 @@ void test_iter_fn_priority_heap(void *data) { } int main(void) { + puts("Begin data-structures unit test."); + // Test LinkedList. { SDArchiverLinkedList *list = simple_archiver_list_init(); diff --git a/src/test.c b/src/test.c index d270b27..7161921 100644 --- a/src/test.c +++ b/src/test.c @@ -60,6 +60,8 @@ static int32_t checks_passed = 0; } while (0); int main(void) { + puts("Begin unit test."); + // Test parser. { size_t idx = -- 2.49.0