Skip to content

Commit 7fb4e29

Browse files
TrottItalo A. Casas
authored andcommitted
test: skip IPv6 test on non-IPv6 systems
Until recently, test-dgram-address would fail on machines without IPv6 but still exit with a successful return code. (It would console.log() the error but not actually fail.) Now that the test has been updated such that it will fail the IPv6 part of the test if there is an error event emitted by the socket, skip the test on systems not equipped with IPv6. PR-URL: #11432 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Rod Vagg <rod@vagg.org>
1 parent af01545 commit 7fb4e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-dgram-address.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const dgram = require('dgram');
2626
socket.bind(0, common.localhostIPv4);
2727
}
2828

29-
{
29+
if (common.hasIPv6) {
3030
// IPv6 Test
3131
const socket = dgram.createSocket('udp6');
3232
const localhost = '::1';

0 commit comments

Comments
 (0)