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

unittests: make ipv6_addr more sensible to masking errors

This commit is contained in:
Martine Lenders 2015-04-18 15:39:36 +02:00
parent 4a734d51ca
commit 0670f7daea

View File

@ -404,16 +404,16 @@ static void test_ipv6_addr_match_prefix_same_pointer(void)
static void test_ipv6_addr_init_prefix(void)
{
ng_ipv6_addr_t a = { {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x00, 0x01, 0x02, 0x02, 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
0x00, 0x01, 0x02, 0x03, 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,
0xff, 0xfe, 0xfd, 0xfe, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
}
};