We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c4cec commit 46ac743Copy full SHA for 46ac743
1 file changed
test/internet/test-dns.js
@@ -390,6 +390,15 @@ TEST(function test_lookup_ipv6_explicit_object(done) {
390
391
392
TEST(function test_lookup_ipv6_hint(done) {
393
+ // FreeBSD does not support V4MAPPED flag.
394
+ if (process.platform === 'freebsd') {
395
+ console.log(
396
+ '1..0 # Skipped: test_lookup_ipv6_hint is disabled on FreeBSD.'
397
+ );
398
+ done();
399
+ return;
400
+ }
401
+
402
var req = dns.lookup('www.google.com', {
403
family: 6,
404
hints: dns.V4MAPPED
0 commit comments