Rev 2022 | Rev 2028 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2022 | Rev 2027 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #include <test.h> |
35 | #include <test.h> |
| 36 | 36 | ||
| 37 | test_t tests[] = { |
37 | test_t tests[] = { |
| 38 | { |
- | |
| 39 | "atomic1", |
- | |
| 40 | "Test atomic operations", |
38 | #include <atomic/atomic1.def> |
| 41 | &test_atomic1, |
- | |
| 42 | true |
- | |
| 43 | }, |
- | |
| 44 | { |
- | |
| 45 | "btree1", |
- | |
| 46 | "Test B-tree operations", |
39 | #include <btree/btree1.def> |
| 47 | &test_btree1, |
- | |
| 48 | true |
- | |
| 49 | }, |
- | |
| 50 | { |
- | |
| 51 | "mips1", |
- | |
| 52 | "MIPS debug test", |
40 | #include <debug/mips1.def> |
| 53 | &test_mips1, |
- | |
| 54 | true |
- | |
| 55 | }, |
- | |
| 56 | { |
- | |
| 57 | "fault1", |
- | |
| 58 | "Write to NULL (maybe page fault)", |
- | |
| 59 | &test_fault1, |
41 | #include <fault/fault1.def> |
| 60 | false |
- | |
| 61 | }, |
- | |
| 62 | { |
- | |
| 63 | "fpu1", |
- | |
| 64 | "Intel FPU test", |
- | |
| 65 | &test_fpu1, |
42 | #include <fpu/fpu1.def> |
| 66 | true |
- | |
| 67 | }, |
- | |
| 68 | { |
- | |
| 69 | "sse1", |
- | |
| 70 | "Intel SEE test", |
- | |
| 71 | &test_sse1, |
43 | #include <fpu/sse1.def> |
| 72 | true |
- | |
| 73 | }, |
- | |
| 74 | { |
- | |
| 75 | "mips2", |
- | |
| 76 | "MIPS FPU test", |
- | |
| 77 | &test_mips2, |
44 | #include <fpu/mips2.def> |
| 78 | true |
- | |
| 79 | }, |
45 | /* |
| 80 | { |
46 | { |
| 81 | "falloc1", |
47 | "falloc1", |
| 82 | "Frame allocator test 1", |
48 | "Frame allocator test 1", |
| 83 | &test_falloc1, |
49 | &test_falloc1, |
| 84 | true |
50 | true |
| Line 170... | Line 136... | ||
| 170 | { |
136 | { |
| 171 | "sysinfo1", |
137 | "sysinfo1", |
| 172 | "Sysinfo test", |
138 | "Sysinfo test", |
| 173 | &test_sysinfo1, |
139 | &test_sysinfo1, |
| 174 | true |
140 | true |
| 175 | }, |
141 | },*/ |
| 176 | {NULL, NULL, NULL} |
142 | {NULL, NULL, NULL} |
| 177 | }; |
143 | }; |
| 178 | 144 | ||
| 179 | /** @} |
145 | /** @} |
| 180 | */ |
146 | */ |