1/* This file contains an array of all test functions, last element is NULL */
2
3#include "testmore.h"
4#include "testlist.h"
5
6#define ONE_TEST(x) {#x, x, 0 , 0, 0 },
7#define DISABLED_ONE_TEST(x)
8struct one_test_s testlist[] = {
9#include "testlistInc.h"
10    { NULL, NULL, 0, 0, 0},
11};
12#undef ONE_TEST
13#undef DISABLED_ONE_TEST
14
15
16