summaryrefslogtreecommitdiffstats
path: root/test/parser/main.c
blob: 25930a5ea6e479d26511565a04499a00c68ab093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include <talloc/talloc.h>
#include <log/log.h>

#include "parser-test.h"

extern struct parser_test *test_init(void);
extern void test_fini(struct parser_test *test);
extern void run_test(struct parser_test *test);

int main(void)
{
	struct parser_test *test;
	pb_log_init(stdout);

	test = test_init();

	run_test(test);

	test_fini(test);

	return EXIT_SUCCESS;
}
OpenPOWER on IntegriCloud