diff --git a/deps/ngtcp2/ngtcp2.gyp b/deps/ngtcp2/ngtcp2.gyp index 68013580874b09..ca64d16778315d 100644 --- a/deps/ngtcp2/ngtcp2.gyp +++ b/deps/ngtcp2/ngtcp2.gyp @@ -13,6 +13,7 @@ 'ngtcp2/lib/ngtcp2_cid.c', 'ngtcp2/lib/ngtcp2_conn.c', 'ngtcp2/lib/ngtcp2_conv.c', + 'ngtcp2/lib/ngtcp2_dcidtr.c', 'ngtcp2/lib/ngtcp2_crypto.c', 'ngtcp2/lib/ngtcp2_err.c', 'ngtcp2/lib/ngtcp2_frame_chain.c', diff --git a/test/parallel/test-config-json-schema.js b/test/parallel/test-config-json-schema.js index 0872a2419c0224..8de0e9bf7890d1 100644 --- a/test/parallel/test-config-json-schema.js +++ b/test/parallel/test-config-json-schema.js @@ -21,6 +21,10 @@ if (!common.hasIntl) { common.skip('missing Intl'); } +if (process.config.variables.node_quic) { + common.skip('this test assumes default configuration options'); +} + const { generateConfigJsonSchema, } = require('internal/options');