From: Lukas Krickl Date: Mon, 19 Feb 2024 06:24:30 +0000 (+0100) Subject: Added additional ok message when all tests pass X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=8b0c1fd1f2efafdbebe0b3cc60ca7ceac0267754;p=ulas%2F.git Added additional ok message when all tests pass --- diff --git a/src/test.c b/src/test.c index 3bf0de3..a6425ed 100644 --- a/src/test.c +++ b/src/test.c @@ -411,6 +411,7 @@ void test_full(void) { } int main(int arc, char **argv) { + TESTBEGIN("ulas test"); ulas_init(ulas_cfg_from_env()); /*if (!ulascfg.verbose) { @@ -432,5 +433,6 @@ int main(int arc, char **argv) { // so call after free test_full(); + TESTEND("ulas test"); return 0; }