1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2694 from altairpearl/master

tests: Updated include guards to remove leading underscores
This commit is contained in:
Peter Kietzmann 2015-03-29 17:07:45 +02:00
commit 096cfd8323
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>
*/
#ifndef __TESTS_<MODULE>_H_
#define __TESTS_<MODULE>_H_
#ifndef TESTS_<MODULE>_H_
#define TESTS_<MODULE>_H_
#include "embUnit/embUnit.h"
#ifdef __cplusplus
@ -168,7 +168,7 @@ Test *tests_<module>_<header2>_tests(void);
}
#endif
#endif /* __TESTS_<MODULE>_H_ */
#endif /* TESTS_<MODULE>_H_ */
/** @} */
```

View File

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

View File

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

View File

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