blob: 7fdd105cb292a8b406b991af6437e8198f4996cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TEST_LIB
#define TEST_LIB
#include "lib.h"
#include "test-common.h"
#define TEST(x) TEST_DECL(x)
#define FATAL(x) FATAL_DECL(x)
#include "test-lib.inc"
#undef TEST
#undef FATAL
#endif
|