🔊 zlog set up

This commit is contained in:
Paul Breugnot 2025-02-01 11:10:56 +01:00
parent 0e7a1f5623
commit fc736642b2
21 changed files with 302 additions and 157 deletions

View file

@ -2,13 +2,22 @@
#define ASWM_TEST_SET_UP
#include "unity.h"
#include "zlog.h"
#include "X11/Xlib.h"
#ifndef ASWM_TEST_DIR
#define ASWM_TEST_DIR "."
#endif
// Extern variables accessible from any test.
// Defined in test_set_up.c
extern char display_name[5];
extern int aswm_pid;
extern Display* test_display;
extern Window test_root;
extern zlog_category_t *test_log;
void set_up_test_logger();
void tear_down_test_logger();
#endif