X Tutup
The Wayback Machine - https://web.archive.org/web/20230218211811/https://github.com/nodejs/node/commit/213cac0b94
Skip to content
Permalink
Browse files
quic: temporarily skip quic-ipv6only test
The dual stack support is currently broken as the QuicSocket endpoints
are not properly accounting for all cases. Needs to be investigated
further.

PR-URL: #34033
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
  • Loading branch information
jasnell committed Jun 24, 2020
1 parent 99f7c4b commit 213cac0
Showing 1 changed file with 3 additions and 0 deletions.
@@ -9,6 +9,9 @@ if (!common.hasIPv6)
if (!common.hasQuic)
common.skip('missing quic');

common.skip(
'temporarily skip ipv6only check. dual stack support is current broken');

const assert = require('assert');
const { createQuicSocket } = require('net');
const { key, cert, ca } = require('../common/quic');

0 comments on commit 213cac0

Please sign in to comment.
X Tutup