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