Skip to content

Commit 3035267

Browse files
committed
[squash] fix error + conform to test style
1 parent 7e8f7c7 commit 3035267

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

benchmark/child_process/child-process-read.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
'use strict';
22
const common = require('../common.js');
3+
4+
// This benchmark uses `yes` to create noisy child_processes with varying
5+
// output message lengths, and tries to read 8GB of output
6+
37
const os = require('os');
8+
const child_process = require('child_process');
49

510
var messagesLength = [64, 256, 1024, 4096];
611
// Windows does not support that long arguments
@@ -12,7 +17,6 @@ const bench = common.createBenchmark(main, {
1217
dur: [5]
1318
});
1419

15-
const spawn = require('child_process').spawn;
1620
function main(conf) {
1721
bench.start();
1822

@@ -21,7 +25,7 @@ function main(conf) {
2125

2226
const msg = `"${'.'.repeat(len)}"`;
2327
const options = { 'stdio': ['ignore', 'pipe', 'ignore'] };
24-
const child = spawn('yes', [msg], options);
28+
const child = child_process.spawn('yes', [msg], options);
2529

2630
var bytes = 0;
2731
child.stdout.on('data', function(msg) {

0 commit comments

Comments
 (0)