Skip to content

Commit 02ae1b5

Browse files
committed
test: skip test when openssl_is_fips
1 parent f83148c commit 02ae1b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/parallel/test-https-selfsigned-no-keycertsign-no-crash.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ if (!common.hasCrypto)
1414

1515
const crypto = require('crypto');
1616

17+
// See #37990 for details on why this is problematic with FIPS.
18+
if (process.config.variables.openssl_is_fips)
19+
common.skip('Skipping as test uses non-fips compliant EC curve');
20+
1721
// This test will fail for OpenSSL < 1.1.1h
1822
const minOpenSSL = 269488271;
1923

0 commit comments

Comments
 (0)