From 1e3ca08048542a29d04ecc2c1dbc0e5ba8421c27 Mon Sep 17 00:00:00 2001 From: sanine Date: Tue, 21 Dec 2021 20:58:51 -0600 Subject: strip things down in preparation for refactor --- lily-test.h | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) (limited to 'lily-test.h') diff --git a/lily-test.h b/lily-test.h index 9f166b1..a1e63e5 100644 --- a/lily-test.h +++ b/lily-test.h @@ -1,32 +1,6 @@ #ifndef LILY_TEST_H #define LILY_TEST_H -#define lily_test const char * - -struct lily_test_data_t { - int tests_run; - int tests_failed; -}; - -#define LILY_INIT() \ - struct lily_test_data_t lily_test_data = { 0, 0 }; - - -// helper macros to turn numerical constants into strings -#define STR_IMPL(x) #x -#define STR(X) STR_IMPL(x) - - -// assertion macros -#define lily_indent " " -#define lily_assert_msg(statement, message) \ - do { \ - if (!(statement)) \ - return "" message \ - "\n" lily_indent " [" __FILE__ ":" STR(__LINE__) "]"; \ - } while(0) - -#define lily_assert_equal(a, b) lily_assert_msg((a) == (b), "'" #a "' is not equal to '" #b "'") - +#define LILY_FILENAME __FILE__ #endif -- cgit v1.2.1