Skip to content

Commit

Permalink
test: skip test when openssl_is_fips
Browse files Browse the repository at this point in the history
  • Loading branch information
nils91 committed Apr 14, 2021
1 parent f83148c commit 02ae1b5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ if (!common.hasCrypto)

const crypto = require('crypto');

// See #37990 for details on why this is problematic with FIPS.
if (process.config.variables.openssl_is_fips)
common.skip('Skipping as test uses non-fips compliant EC curve');

// This test will fail for OpenSSL < 1.1.1h
const minOpenSSL = 269488271;

Expand Down

0 comments on commit 02ae1b5

Please sign in to comment.