Skip to content

Commit e008ca8

Browse files
Trottdanbev
authored andcommitted
test: fix flaky test-vm-timeout-escape-nexttick
PR-URL: #28461 Fixes: #24120 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 3c9c89d commit e008ca8

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

test/known_issues/known_issues.status

-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ test-vm-timeout-escape-promise: PASS,FLAKY
2222
[$system==aix]
2323

2424
[$arch==arm]
25-
# https://github.com/nodejs/node/issues/24120
26-
test-vm-timeout-escape-nexttick: PASS,FLAKY

test/known_issues/test-vm-timeout-escape-nexttick.js

+17-13
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,20 @@ function loop() {
2727
}
2828
}
2929

30-
assert.throws(() => {
31-
vm.runInNewContext(
32-
'nextTick(loop); loop();',
33-
{
34-
hrtime,
35-
nextTick,
36-
loop
37-
},
38-
{ timeout: common.platformTimeout(10) }
39-
);
40-
}, {
41-
code: 'ERR_SCRIPT_EXECUTION_TIMEOUT'
42-
});
30+
// The bug won't happen 100% reliably so run the test a small number of times to
31+
// make sure we catch it if the bug exists.
32+
for (let i = 0; i < 4; i++) {
33+
assert.throws(() => {
34+
vm.runInNewContext(
35+
'nextTick(loop); loop();',
36+
{
37+
hrtime,
38+
nextTick,
39+
loop
40+
},
41+
{ timeout: common.platformTimeout(10) }
42+
);
43+
}, {
44+
code: 'ERR_SCRIPT_EXECUTION_TIMEOUT'
45+
});
46+
}

0 commit comments

Comments
 (0)