2016-05-15 00:24:34 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common.js');
|
2016-05-31 18:25:15 +02:00
|
|
|
|
|
|
|
var messagesLength = [64, 256, 1024, 4096];
|
|
|
|
// Windows does not support that long arguments
|
|
|
|
if (process.platform !== 'win32')
|
|
|
|
messagesLength.push(32768);
|
2016-05-15 00:24:34 +02:00
|
|
|
const bench = common.createBenchmark(main, {
|
2016-05-31 18:25:15 +02:00
|
|
|
len: messagesLength,
|
2016-05-15 00:24:34 +02:00
|
|
|
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)}"`;
|
|
|
|
msg.match(/./);
|
|
|
|
const options = {'stdio': ['ignore', 'pipe', 'ignore']};
|
2016-09-22 13:00:27 +02:00
|
|
|
const child = exec(`yes ${msg}`, options);
|
2016-05-15 00:24:34 +02:00
|
|
|
|
|
|
|
var bytes = 0;
|
|
|
|
child.stdout.on('data', function(msg) {
|
|
|
|
bytes += msg.length;
|
|
|
|
});
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
child.kill();
|
|
|
|
bench.end(bytes);
|
|
|
|
}, dur * 1000);
|
|
|
|
}
|