Subversion Repositories HelenOS

Rev

Rev 4261 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4261 Rev 4350
Line 29... Line 29...
29
/** @addtogroup net
29
/** @addtogroup net
30
 *  @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/** @file
33
/** @file
-
 
34
 *  Self tests.
34
 */
35
 */
35
 
36
 
36
#ifndef __SELF_TEST_H__
37
#ifndef __SELF_TEST_H__
37
#define __SELF_TEST_H__
38
#define __SELF_TEST_H__
38
 
39
 
39
#include "configuration.h"
40
#include "configuration.h"
40
 
41
 
-
 
42
/** Self test start function.
-
 
43
 *  Runs all the configured self tests.
-
 
44
 *  @see configuration.h
-
 
45
 *  @returns EOK on success.
-
 
46
 *  @returns The first error occurred.
-
 
47
 */
41
#if NET_SELF_TEST
48
#if NET_SELF_TEST
42
 
49
 
43
int self_test( void );
50
int self_test( void );
44
 
51
 
45
#else
52
#else