From f22b551ec4232bc1ac4ec089fa60fe97c78d0b3c Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Mon, 27 Feb 2023 17:44:51 +0100 Subject: Add a printf to check when tests start --- test/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/main.c b/test/main.c index 475d23d..ed60fcc 100644 --- a/test/main.c +++ b/test/main.c @@ -1,10 +1,13 @@ /* See LICENSE file for copyright and license details. */ +#include #include "log.h" int main(int argc, char **argv) { + printf("Init tests\n\n"); + Log *log = log_create(__FILE__); log_debug(log, "debug log"); log_info(log, "info log"); -- cgit v1.2.3