Skip to content

Commit abc2ff4

Browse files
jasnelldanielleadams
authored andcommittedJan 12, 2021
test: disable test-crypto-secure-heap with asan
The asan checks don't play well currently with persistent secure heap allocations. Signed-off-by: James M Snell <[email protected]> PR-URL: #36900 Refs: #36881 Reviewed-By: Danielle Adams <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Filip Skokan <[email protected]>
1 parent 05f34c6 commit abc2ff4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎test/parallel/test-crypto-secure-heap.js

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ if (!common.hasCrypto)
77
if (common.isWindows)
88
common.skip('Not supported on Windows');
99

10+
if (process.config.variables.asan)
11+
common.skip('ASAN does not play well with secure heap allocations');
12+
1013
const assert = require('assert');
1114
const { fork } = require('child_process');
1215
const fixtures = require('../common/fixtures');

0 commit comments

Comments
 (0)