test.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _GEL_TEST_H
00023 #define _GEL_TEST_H
00024
00025 #include <sys/param.h>
00026
00027 #ifdef __cplusplus
00028 extern "C" {
00029 #endif
00030
00035
00037 extern int test_error (const char *message, ...);
00038
00039 extern void test_depend (const char *depend);
00040
00042 extern int test_status (void);
00043
00044 extern void test_start (const char *name);
00045
00046 extern int test_end (const char *name);
00047
00048 extern int test_repeat;
00049
00052 #ifdef __cplusplus
00053 };
00054 #endif
00055 #endif
|