diff options
author | 2023-02-27 17:44:51 +0100 | |
---|---|---|
committer | 2023-02-27 17:44:51 +0100 | |
commit | f22b551ec4232bc1ac4ec089fa60fe97c78d0b3c (patch) | |
tree | 214bc96c1e8e842ea01d14479c5c05f90bbad149 | |
parent | 44ebb640b4da81bff53c811e266de5105334372b (diff) | |
download | log-f22b551ec4232bc1ac4ec089fa60fe97c78d0b3c.tar.gz log-f22b551ec4232bc1ac4ec089fa60fe97c78d0b3c.zip |
Add a printf to check when tests start
-rw-r--r-- | test/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 <stdio.h> #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"); |