unittests/tests-rpl_srh: rename to tests-gnrc_rpl_srh

This commit is contained in:
Martine Lenders 2018-10-30 12:38:36 +01:00
parent fb4689290d
commit 17738d7dd4
4 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@
#include "net/gnrc/ipv6/ext/rh.h" #include "net/gnrc/ipv6/ext/rh.h"
#include "unittests-constants.h" #include "unittests-constants.h"
#include "tests-rpl_srh.h" #include "tests-gnrc_rpl_srh.h"
#define IPV6_DST {{ 0x20, 0x01, 0xab, 0xcd, \ #define IPV6_DST {{ 0x20, 0x01, 0xab, 0xcd, \
0x00, 0x00, 0x00, 0x00, \ 0x00, 0x00, 0x00, 0x00, \
@ -195,7 +195,7 @@ Test *tests_rpl_srh_tests(void)
return (Test *)&rpl_srh_tests; return (Test *)&rpl_srh_tests;
} }
void tests_rpl_srh(void) void tests_gnrc_rpl_srh(void)
{ {
TESTS_RUN(tests_rpl_srh_tests()); TESTS_RUN(tests_rpl_srh_tests());
} }

View File

@ -15,8 +15,8 @@
* *
* @author Cenk Gündoğan <mail@cgundogan.de> * @author Cenk Gündoğan <mail@cgundogan.de>
*/ */
#ifndef TESTS_RPL_SRH_H #ifndef TESTS_GNRC_RPL_SRH_H
#define TESTS_RPL_SRH_H #define TESTS_GNRC_RPL_SRH_H
#include "embUnit.h" #include "embUnit.h"
@ -27,11 +27,11 @@ extern "C" {
/** /**
* @brief The entry point of this test suite. * @brief The entry point of this test suite.
*/ */
void tests_rpl_srh(void); void tests_gnrc_rpl_srh(void);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif /* TESTS_RPL_SRH_H */ #endif /* TESTS_GNRC_RPL_SRH_H */
/** @} */ /** @} */