summaryrefslogtreecommitdiff
path: root/deps/eglib/test/fake.c
blob: c8d9af61165e486656084672c9358b33e40e28fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Fake test allows debugging of the driver itself
 */
 
#include "test.h"

RESULT
test_fake()
{
	return OK;
}

static Test fake_tests [] = {
	{"fake", test_fake},
	{NULL, NULL}
};

DEFINE_TEST_GROUP_INIT(fake_tests_init, fake_tests)