@@ -23,17 +23,17 @@ if (process.argv[2] === 'child') {
23
23
const fs = require('fs');
24
24
const { Worker, parentPort } = require('worker_threads');
25
25
parentPort.on('message', (m) => {
26
- if (counter++ === 10 )
26
+ if (counter++ === 1024 )
27
27
process.exit(0);
28
- parentPort.postMessage(
29
- fs.readFileSync(m.toString()).slice(0, 1024 * 1024));
28
+ parentPort.postMessage(
29
+ fs.readFileSync(m.toString()).slice(0, 1024 * 1024));
30
30
});
31
31
` ;
32
32
33
33
const { Worker } = require ( 'worker_threads' ) ;
34
34
const w = new Worker ( pingpong , { eval : true } ) ;
35
35
w . on ( 'message' , ( m ) => {
36
- w . postMessage ( process . execPath ) ;
36
+ w . postMessage ( __filename ) ;
37
37
} ) ;
38
38
39
39
w . on ( 'exit' , common . mustCall ( ( ) => {
@@ -46,12 +46,13 @@ if (process.argv[2] === 'child') {
46
46
}
47
47
process . exit ( 0 ) ;
48
48
} ) ) ;
49
- w . postMessage ( process . execPath ) ;
49
+ w . postMessage ( __filename ) ;
50
50
} else {
51
51
tmpdir . refresh ( ) ;
52
+ const timeout = common . platformTimeout ( 30_000 ) ;
52
53
const spawnResult = spawnSync (
53
54
process . execPath , [ '--prof' , __filename , 'child' ] ,
54
- { cwd : tmpdir . path , encoding : 'utf8' , timeout : 30_000 } ) ;
55
+ { cwd : tmpdir . path , encoding : 'utf8' , timeout } ) ;
55
56
assert . strictEqual ( spawnResult . stderr . toString ( ) , '' ,
56
57
`child exited with an error: \
57
58
${ util . inspect ( spawnResult ) } ` ) ;
@@ -72,7 +73,7 @@ if (process.argv[2] === 'child') {
72
73
// Test that at least 15 ticks have been recorded for both parent and child
73
74
// threads. When not tracking Worker threads, only 1 or 2 ticks would
74
75
// have been recorded.
75
- // When running locally on x64 Linux , this number is usually at least 200
76
+ // When running locally, this number is usually around 200
76
77
// for both threads, so 15 seems like a very safe threshold.
77
78
assert ( ticks >= 15 , `${ ticks } >= 15` ) ;
78
79
}
0 commit comments