From 7aa261f8d57cb53cc334f6bf1920a6f8517ff054 Mon Sep 17 00:00:00 2001 From: axtloss Date: Fri, 27 Sep 2024 12:11:52 +0200 Subject: Rework test suite to be more modular --- tests/test_driver.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_driver.h (limited to 'tests/test_driver.h') diff --git a/tests/test_driver.h b/tests/test_driver.h new file mode 100644 index 0000000..4c157d9 --- /dev/null +++ b/tests/test_driver.h @@ -0,0 +1,8 @@ +struct test_t { + int (*test_func)(void); + char *test_name; + char *test_desc; +}; + +void register_test (struct test_t *test); +void tests_entrypoint (); -- cgit v1.2.3