Changeset 319e60e in mainline for kernel/test/test.h


Ignore:
Timestamp:
2006-12-11T18:33:53Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50661ab
Parents:
134877d
Message:

prepare for new test infrastructure

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/test/test.h

    r134877d r319e60e  
    11/*
    2  * Copyright (C) 2001-2004 Jakub Jermar
     2 * Copyright (C) 2006 Martin Decky
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup test
    3030 * @{
    3131 */
     
    3636#define KERN_TEST_H_
    3737
    38 extern void test(void);
     38#include <arch/types.h>
     39#include <typedefs.h>
     40
     41typedef struct {
     42        char * name;
     43        char * desc;
     44        function entry;
     45} test_t;
     46
     47extern void test_atomic1(void);
     48
     49extern test_t tests[];
    3950
    4051#endif
Note: See TracChangeset for help on using the changeset viewer.