test: run tests under asan on linux-x64 (#23570)

This commit is contained in:
Jeremy Rose 2021-02-22 16:16:17 -08:00 committed by GitHub
parent b181dae146
commit 7f8e34fa3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 112 additions and 50 deletions

View file

@ -243,7 +243,8 @@ describe('node feature', () => {
});
// IPC Electron child process not supported on Windows
ifit(process.platform !== 'win32')('does not crash when quitting with the inspector connected', function (done) {
// TODO(jeremy): figure out why this times out under ASan
ifit(process.platform !== 'win32' && !process.env.IS_ASAN)('does not crash when quitting with the inspector connected', function (done) {
child = childProcess.spawn(process.execPath, [path.join(fixtures, 'module', 'delay-exit'), '--inspect=0'], {
stdio: ['ipc']
}) as childProcess.ChildProcessWithoutNullStreams;