From: Zbigniew Jędrzejewski-Szmek Date: Sat, 13 May 2017 15:47:36 +0000 (-0400) Subject: test-ipv4ll: use assert_se consistently X-Git-Tag: v234~196^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bf47e73929dbc9361574af1df84e437901a5538;p=thirdparty%2Fsystemd.git test-ipv4ll: use assert_se consistently We use assert_se in tests so that the asserts get evaluated even if compiled with NDEBUG. --- diff --git a/src/libsystemd-network/test-ipv4ll.c b/src/libsystemd-network/test-ipv4ll.c index 9b3fde1b26a..89864fd39cf 100644 --- a/src/libsystemd-network/test-ipv4ll.c +++ b/src/libsystemd-network/test-ipv4ll.c @@ -71,10 +71,10 @@ int arp_send_probe(int fd, int ifindex, be32_t pa, const struct ether_addr *ha) { struct ether_arp ea = {}; - assert(fd >= 0); - assert(ifindex > 0); - assert(pa != 0); - assert(ha); + assert_se(fd >= 0); + assert_se(ifindex > 0); + assert_se(pa != 0); + assert_se(ha); return arp_network_send_raw_socket(fd, ifindex, &ea); } @@ -83,10 +83,10 @@ int arp_send_announcement(int fd, int ifindex, be32_t pa, const struct ether_addr *ha) { struct ether_arp ea = {}; - assert(fd >= 0); - assert(ifindex > 0); - assert(pa != 0); - assert(ha); + assert_se(fd >= 0); + assert_se(ifindex > 0); + assert_se(pa != 0); + assert_se(ha); return arp_network_send_raw_socket(fd, ifindex, &ea); }