blob: f1a6de6fad64236246bfe1af81f20f082c0b761a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#define LILY_IMPLEMENTATION
#include "lily-test.h"
#include "tests.h"
int main()
{
#define X(test) run_test(test);
TESTS
#undef X
return 0;
}
|