summaryrefslogtreecommitdiff
path: root/src/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test.c')
-rw-r--r--src/test/test.c7
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;
}