summaryrefslogtreecommitdiff
path: root/test/nofonts.c
blob: 557d76484b9aba2341c94c4bbb53818be693eab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

#include "rufl.h"

#include "harness.h"
#include "testutils.h"

int main(int argc, const char **argv)
{
	UNUSED(argc);
	UNUSED(argv);

	rufl_test_harness_init(380, true, false);

	assert(rufl_FONT_MANAGER_ERROR == rufl_init());

	printf("PASS\n");

	return 0;
}