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

tests/unittests/tests-gnrc_ipv6: fix NDEBUG compile problem

This commit is contained in:
Gunar Schorcht 2020-02-25 09:26:38 +01:00
parent e4978e65c4
commit 4f5dab16b7

View File

@ -21,6 +21,7 @@
#include "net/gnrc/pktbuf.h"
#include "unittests-constants.h"
#include "test_utils/expect.h"
#include "tests-gnrc_ipv6.h"
#define DEFAULT_TEST_SRC { { \
@ -56,16 +57,16 @@ static void set_up(void)
gnrc_pktbuf_init();
_pkt_w_ip_hdr = gnrc_pktbuf_add(NULL, NULL, 1, GNRC_NETTYPE_NETIF);
assert(_pkt_w_ip_hdr);
expect(_pkt_w_ip_hdr);
_pkt_w_ip_hdr = gnrc_pktbuf_add(_pkt_w_ip_hdr, &ip, sizeof(ipv6_hdr_t), GNRC_NETTYPE_IPV6);
assert(_pkt_w_ip_hdr);
expect(_pkt_w_ip_hdr);
_pkt_w_ip_hdr = gnrc_pktbuf_add(_pkt_w_ip_hdr, NULL, 1, GNRC_NETTYPE_UNDEF);
assert(_pkt_w_ip_hdr);
expect(_pkt_w_ip_hdr);
_pkt_no_ip_hdr = gnrc_pktbuf_add(NULL, NULL, 1, GNRC_NETTYPE_NETIF);
assert(_pkt_no_ip_hdr);
expect(_pkt_no_ip_hdr);
_pkt_no_ip_hdr = gnrc_pktbuf_add(_pkt_no_ip_hdr, NULL, 1, GNRC_NETTYPE_UNDEF);
assert(_pkt_no_ip_hdr);
expect(_pkt_no_ip_hdr);
}
static void tear_down(void)