Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4588 → Rev 4704

/branches/network/uspace/srv/net/configuration.h
37,52 → 37,58
#ifndef __NET_CONFIGURATION_H__
#define __NET_CONFIGURATION_H__
 
/** Activate the self test.
/** Activates the self test.
*/
#define NET_SELF_TEST 0
 
/** Activate the measured strings self test.
/** @name Specific self tests switches
*/
/*@{*/
 
/** Activates the measured strings self test.
* The NET_SELF_TEST has to be activated.
* @see measured_strings.h
*/
#define NET_SELF_TEST_MEASURED_STRINGS 0
 
/** Activate the char map self test.
/** Activates the char map self test.
* The NET_SELF_TEST has to be activated.
* @see char_map.h
*/
#define NET_SELF_TEST_CHAR_MAP 0
 
/** Activate the integral map self test.
/** Activates the integral map self test.
* The NET_SELF_TEST has to be activated.
* @see int_map.h
*/
#define NET_SELF_TEST_INT_MAP 0
 
/** Activate the generic field self test.
/** Activates the generic field self test.
* The NET_SELF_TEST has to be activated.
* @see generic_field.h
*/
#define NET_SELF_TEST_GENERIC_FIELD 0
 
/** Activate the generic char map self test.
/** Activates the generic char map self test.
* The NET_SELF_TEST has to be activated.
* @see generic_char_map.h
*/
#define NET_SELF_TEST_GENERIC_CHAR_MAP 0
 
/** Activate the CRC computation self test.
/** Activates the CRC computation self test.
* The NET_SELF_TEST has to be activated.
* @see crc.h
*/
#define NET_SELF_TEST_CRC 0
 
/** Activate the dynamic fifo self test.
/** Activates the dynamic fifo self test.
* The NET_SELF_TEST has to be activated.
* @see dynamic_fifo.h
*/
#define NET_SELF_TEST_DYNAMIC_FIFO 0
 
/*@}*/
 
#endif
 
/** @}