File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,6 @@ assert.ok(!arg);
58
58
{
59
59
console . log ( 'start case 3' ) ;
60
60
console . time ( 'end case 3' ) ;
61
- // Timeout is set because this case is known to be problematic, so stderr is
62
- // logged for further analysis.
63
- // Ref: https://github.com/nodejs/node/issues/13527
64
- // Ref: https://github.com/nodejs/node/pull/13559
65
61
const opts = {
66
62
execArgv : [ '--abort-on-uncaught-exception' ] ,
67
63
silent : true
@@ -78,15 +74,7 @@ assert.ok(!arg);
78
74
stderr += data ;
79
75
} ) ;
80
76
81
- const tO = setTimeout ( ( ) => {
82
- console . log ( stderr ) ;
83
- child . kill ( 'SIGKILL' ) ;
84
- process . exit ( 1 ) ;
85
- } , 15 * 1000 ) ;
86
- tO . unref ( ) ;
87
-
88
77
child . on ( 'close' , ( code , signal ) => {
89
- clearTimeout ( tO ) ;
90
78
if ( common . isWindows ) {
91
79
assert . strictEqual ( code , 134 ) ;
92
80
assert . strictEqual ( signal , null ) ;
You can’t perform that action at this time.
0 commit comments