1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

unittests: adapt unittests for ipv6_addr_init_prefix() change

This commit is contained in:
Martine Lenders 2015-04-14 11:17:11 +02:00
parent 1230fc4070
commit ccd4b5a2bf

View File

@ -403,13 +403,23 @@ static void test_ipv6_addr_match_prefix_same_pointer(void)
static void test_ipv6_addr_init_prefix(void)
{
ng_ipv6_addr_t a, b = { {
ng_ipv6_addr_t a = { {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
}
};
ng_ipv6_addr_t b = { {
0x00, 0x01, 0x02, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
};
ng_ipv6_addr_t c = { {
0xff, 0xfe, 0xfd, 0xfd, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
}
};
ng_ipv6_addr_init_prefix(&a, &b, 31);
TEST_ASSERT_EQUAL_INT(true, ng_ipv6_addr_equal(&a, &b));
ng_ipv6_addr_init_prefix(&c, &b, 31);
TEST_ASSERT_EQUAL_INT(true, ng_ipv6_addr_equal(&a, &c));
}
static void test_ipv6_addr_set_unspecified(void)