Rev 2500 | Rev 4170 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2500 | Rev 3069 | ||
|---|---|---|---|
| Line 34... | Line 34... | ||
| 34 | 34 | ||
| 35 | #ifndef KERN_TEST_H_ |
35 | #ifndef KERN_TEST_H_ |
| 36 | #define KERN_TEST_H_ |
36 | #define KERN_TEST_H_ |
| 37 | 37 | ||
| 38 | #include <arch/types.h> |
38 | #include <arch/types.h> |
| - | 39 | #include <typedefs.h> |
|
| 39 | 40 | ||
| 40 | typedef char * (* test_entry_t)(bool); |
41 | typedef char *(*test_entry_t)(bool); |
| 41 | 42 | ||
| 42 | typedef struct { |
43 | typedef struct { |
| 43 | char * name; |
44 | char *name; |
| 44 | char * desc; |
45 | char *desc; |
| 45 | test_entry_t entry; |
46 | test_entry_t entry; |
| 46 | bool safe; |
47 | bool safe; |
| 47 | } test_t; |
48 | } test_t; |
| 48 | 49 | ||
| 49 | extern char * test_atomic1(bool quiet); |
50 | extern char * test_atomic1(bool quiet); |