12 Mar
2024
12 Mar
'24
12:37 p.m.
From: Hans Leidekker <hans(a)codeweavers.com> --- dlls/dnsapi/tests/query.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/dnsapi/tests/query.c b/dlls/dnsapi/tests/query.c index 1412fdfa17b..d2472f61f88 100644 --- a/dlls/dnsapi/tests/query.c +++ b/dlls/dnsapi/tests/query.c @@ -167,6 +167,11 @@ static void test_DnsQuery(void) skip("query timed out\n"); return; } + if (status == DNS_INFO_NO_RECORDS) + { + skip("no CNAME records\n"); + return; + } ok(status == ERROR_SUCCESS, "got %ld\n", status); if (status == ERROR_SUCCESS && winetest_debug > 1) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5289