diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/test-arphrd-util.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test-arphrd-util.c b/src/test/test-arphrd-util.c index d8dd464..15b7997 100644 --- a/src/test/test-arphrd-util.c +++ b/src/test/test-arphrd-util.c @@ -1,5 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* Make sure the net/if.h header is included before any linux/ one */ +#include <net/if.h> #include <linux/if_arp.h> #include "arphrd-util.h" @@ -14,11 +16,11 @@ TEST(arphrd) { if (name) { log_info("%i: %s", i, name); - assert_se(arphrd_from_name(name) == i); + ASSERT_EQ(arphrd_from_name(name), i); } } - assert_se(arphrd_to_name(ARPHRD_VOID + 1) == NULL); + ASSERT_NULL(arphrd_to_name(ARPHRD_VOID + 1)); assert_se(arphrd_from_name("huddlduddl") == -EINVAL); assert_se(arphrd_from_name("") == -EINVAL); } |