Skip to content

Commit 9c33a9c

Browse files
committed
fixup! fixup! deps: add ngtcp2 and nghttp3
1 parent 7540879 commit 9c33a9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/common/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ const bits = ['arm64', 'mips', 'mipsel', 'ppc64', 's390x', 'x64']
3838
.includes(process.arch) ? 64 : 32;
3939
const hasIntl = !!process.config.variables.v8_enable_i18n_support;
4040

41-
const hasQuic = !!process.config.variables.openssl_quic;
42-
4341
// Some tests assume a umask of 0o022 so set that up front. Tests that need a
4442
// different umask will set it themselves.
4543
//
@@ -53,6 +51,8 @@ const noop = () => {};
5351
const hasCrypto = Boolean(process.versions.openssl) &&
5452
!process.env.NODE_SKIP_CRYPTO;
5553

54+
const hasQuic = hasCrypto && !!process.config.variables.openssl_quic;
55+
5656
// Check for flags. Skip this for workers (both, the `cluster` module and
5757
// `worker_threads`) and child processes.
5858
// If the binary was built without-ssl then the crypto flags are

0 commit comments

Comments
 (0)