1
2/* This file contains all the prototypes for all the test functions */
3#ifndef __TESTLIST_H__
4#define __TESTLIST_H__
5
6
7#define ONE_TEST(x) int x(int argc, char *const *argv);
8#define DISABLED_ONE_TEST(x) ONE_TEST(x)
9#include "testlistInc.h"
10#undef ONE_TEST
11#undef DISABLED_ONE_TEST
12
13
14#endif /* __TESTLIST_H__ */
15
16