Changeset 34db7fa in mainline for kernel/test/test.c


Ignore:
Timestamp:
2006-12-12T12:32:02Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
96348adc
Parents:
df496c5
Message:

cleanup kernel tests infrastructure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/test.c

    rdf496c5 r34db7fa  
    3636
    3737test_t tests[] = {
    38         {
    39                 "atomic1",
    40                 "Test atomic operations",
    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
    67         },
    68         {
    69                 "sse1",
    70                 "Intel SEE test",
    71                 &test_sse1,
    72                 true
    73         },
    74         {
    75                 "mips2",
    76                 "MIPS FPU test",
    77                 &test_mips2,
    78                 true
    79         },
     38#include <atomic/atomic1.def>
     39#include <btree/btree1.def>
     40#include <debug/mips1.def>
     41#include <fault/fault1.def>
     42#include <fpu/fpu1.def>
     43#include <fpu/sse1.def>
     44#include <fpu/mips2.def>
     45        /*
    8046        {
    8147                "falloc1",
     
    173139                &test_sysinfo1,
    174140                true
    175         },
     141        },*/
    176142        {NULL, NULL, NULL}
    177143};
Note: See TracChangeset for help on using the changeset viewer.