diff options
author | sanine <sanine.not@pm.me> | 2022-09-18 14:08:20 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-09-18 14:08:20 -0500 |
commit | 123b9e22cd4272ef7dcf6e519b03c3ca5ba73953 (patch) | |
tree | 03d8258facad79547596616b6b717406b0bb4bc4 /src/test | |
parent | 99672f4c2bdd1cddb4d749f8e82640db69f6ed08 (diff) |
add basic mesh vertex loading
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/lily-test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/lily-test.h b/src/test/lily-test.h index b5f380c..b001198 100644 --- a/src/test/lily-test.h +++ b/src/test/lily-test.h @@ -92,6 +92,7 @@ void _lily_run_suite(const char *name, lily_test_t suite); */ /** basic assertion function, mostly used by the other assertions */ +#define lily_assert(statement, ...) lily_assert_msg(statement, LILY_LOCATION, __VA_ARGS__) void lily_assert_msg(bool statement, const char *location, const char *format_string, ...); |