tests: Updated include guards to remove leading underscores

This commit is contained in:
altairpearl 2015-03-25 02:57:06 +05:30
parent 985a6525cc
commit 20123210d7
4 changed files with 12 additions and 12 deletions

View File

@ -140,8 +140,8 @@ The test header ``tests-<modulename>/tests-<module>.h`` of a module you add to `
* *
* @author <author> * @author <author>
*/ */
#ifndef __TESTS_<MODULE>_H_ #ifndef TESTS_<MODULE>_H_
#define __TESTS_<MODULE>_H_ #define TESTS_<MODULE>_H_
#include "embUnit/embUnit.h" #include "embUnit/embUnit.h"
#ifdef __cplusplus #ifdef __cplusplus
@ -168,7 +168,7 @@ Test *tests_<module>_<header2>_tests(void);
} }
#endif #endif
#endif /* __TESTS_<MODULE>_H_ */ #endif /* TESTS_<MODULE>_H_ */
/** @} */ /** @} */
``` ```

View File

@ -6,8 +6,8 @@
* directory for more details. * directory for more details.
*/ */
#ifndef __UNITTESTS_CONSTANTS_H__ #ifndef UNITTESTS_CONSTANTS_H_
#define __UNITTESTS_CONSTANTS_H_ #define UNITTESTS_CONSTANTS_H_
#include "embUnit/embUnit.h" #include "embUnit/embUnit.h"
#ifdef __cplusplus #ifdef __cplusplus
@ -65,5 +65,5 @@ extern "C" {
} }
#endif #endif
#endif /* __UNITTESTS_CONSTANTS_H_ */ #endif /* UNITTESTS_CONSTANTS_H_ */
/** @} */ /** @} */

View File

@ -15,8 +15,8 @@
* *
* @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/ */
#ifndef __TESTS_CORE_H_ #ifndef TESTS_CORE_H_
#define __TESTS_CORE_H_ #define TESTS_CORE_H_
#include "embUnit.h" #include "embUnit.h"
@ -89,5 +89,5 @@ Test *tests_core_ringbuffer_tests(void);
} }
#endif #endif
#endif /* __TESTS_CORE_H_ */ #endif /* TESTS_CORE_H_ */
/** @} */ /** @} */

View File

@ -15,8 +15,8 @@
* *
* @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/ */
#ifndef __TESTS_NETREG_H_ #ifndef TESTS_NETREG_H_
#define __TESTS_NETREG_H_ #define TESTS_NETREG_H_
#include "embUnit.h" #include "embUnit.h"
@ -33,5 +33,5 @@ void tests_ipv6_nc(void);
} }
#endif #endif
#endif /* __TESTS_NETREG_H_ */ #endif /* TESTS_NETREG_H_ */
/** @} */ /** @} */