mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
61ebfa8d1f
PR-URL: https://github.com/nodejs/node/pull/11834 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
36 lines
822 B
JavaScript
36 lines
822 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
|
|
var messagesLength = [64, 256, 1024, 4096];
|
|
// Windows does not support that long arguments
|
|
if (process.platform !== 'win32')
|
|
messagesLength.push(32768);
|
|
const bench = common.createBenchmark(main, {
|
|
len: messagesLength,
|
|
dur: [5]
|
|
});
|
|
|
|
const exec = require('child_process').exec;
|
|
function main(conf) {
|
|
bench.start();
|
|
|
|
const dur = +conf.dur;
|
|
const len = +conf.len;
|
|
|
|
const msg = `"${'.'.repeat(len)}"`;
|
|
// eslint-disable-next-line no-unescaped-regexp-dot
|
|
msg.match(/./);
|
|
const options = {'stdio': ['ignore', 'pipe', 'ignore']};
|
|
const child = exec(`yes ${msg}`, options);
|
|
|
|
var bytes = 0;
|
|
child.stdout.on('data', function(msg) {
|
|
bytes += msg.length;
|
|
});
|
|
|
|
setTimeout(function() {
|
|
child.kill();
|
|
bench.end(bytes);
|
|
}, dur * 1000);
|
|
}
|