blob: dbb813cd5d1b0d3dbd5ca52a384f4967f940be0c (
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()
{
run_test(test_LILY_LOCATION);
run_test(test_assert_msg);
return 0;
}
|