summaryrefslogtreecommitdiff
path: root/tests/main.c
blob: 15981909b25f22c92493a3a1971acb1edfd6fa52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>

#include "tests.h"

int main()
{
	#define X(test) run_test(test);
	TESTS
	#undef X
	return 0;
}