diff options
author | sanine <sanine.not@pm.me> | 2023-01-03 23:31:48 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-01-03 23:31:48 -0600 |
commit | 13a7c902c051fa8da1e476687c17bb5431d258e1 (patch) | |
tree | ec75993aba0b8264f0dffd03eee2191020b206be /src/test/test.c | |
parent | e68e6d4e433fe42a0c6df18b2f2d7990b91b7cd6 (diff) |
add kai_expand_array
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/test.c b/src/test/test.c index c97f325..7d71fbb 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1,7 +1,12 @@ +#define LILY_IMPLEMENTATION #include "test.h" int main() { - RUN_TESTS(); + lily_begin(); + #define X(test) test(); + TESTS + #undef X + lily_finish(); return 0; } |