Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/js/node/worker_threads/worker-shutdown-post-leak.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ test.skipIf(!isASAN || isWindows)(
const [stdout, stderr, exitCode] = await Promise.all([proc.stdout.text(), proc.stderr.text(), proc.exited]);
expect({ stdout, stderr, exitCode }).toEqual({ stdout: "", stderr: "", exitCode: 0 });
},
// Worker boot + VM teardown alone take ~5s under debug+ASAN on a loaded
// machine, and when LSan does find a leak, symbolizing the report against
// the debug binary adds several seconds more; the 5s default turned both
// into a timeout.
90_000,
);