Rev 2019 | Rev 2021 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2019 | Rev 2020 | ||
---|---|---|---|
Line 36... | Line 36... | ||
36 | 36 | ||
37 | test_t tests[] = { |
37 | test_t tests[] = { |
38 | { |
38 | { |
39 | "atomic1", |
39 | "atomic1", |
40 | "Test atomic operations", |
40 | "Test atomic operations", |
41 | &test_atomic1 |
41 | &test_atomic1, |
- | 42 | true |
|
- | 43 | }, |
|
- | 44 | { |
|
- | 45 | "btree1", |
|
- | 46 | "Test B-tree operations", |
|
- | 47 | &test_btree1, |
|
- | 48 | true |
|
- | 49 | }, |
|
- | 50 | { |
|
- | 51 | "mips1", |
|
- | 52 | "MIPS debug test", |
|
- | 53 | &test_mips1, |
|
- | 54 | true |
|
- | 55 | }, |
|
- | 56 | { |
|
- | 57 | "fault1", |
|
- | 58 | "Write to NULL (maybe page fault)", |
|
- | 59 | &test_fault1, |
|
- | 60 | false |
|
- | 61 | }, |
|
- | 62 | { |
|
- | 63 | "fpu1", |
|
- | 64 | "Intel FPU test", |
|
- | 65 | &test_fpu1, |
|
- | 66 | true |
|
42 | }, |
67 | }, |
43 | {NULL, NULL, NULL} |
68 | {NULL, NULL, NULL} |
44 | }; |
69 | }; |
45 | 70 | ||
46 | /** @} |
71 | /** @} |