Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test-ip6: skip ip6 case when CONFIG_NET_IPv6 disabled #1

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/test-getnameinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ TEST_IMPL(getnameinfo_basic_ip6) {
#if defined(__QEMU__)
RETURN_SKIP("Test does not currently work in QEMU");
#endif
#ifndef CONFIG_NET_IPv6
RETURN_SKIP("Test depends on the CONFIG_NET_IPv6 configuration");
#endif

int r;

Expand Down
3 changes: 3 additions & 0 deletions test/test-ip6-addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ TEST_IMPL(ip6_addr_link_local) {
#if defined(__CYGWIN__) || defined(__MSYS__)
/* FIXME: Does Cygwin support this? */
RETURN_SKIP("FIXME: This test needs more investigation on Cygwin");
#endif
#ifndef CONFIG_NET_IPv6
RETURN_SKIP("Test depends on the CONFIG_NET_IPv6 configuration");
#endif
char string_address[INET6_ADDRSTRLEN];
uv_interface_address_t* addresses;
Expand Down
Loading