tools, benchmark: test util benchmark

Create a minimal test for the util benchmark files.

PR-URL: https://github.com/nodejs/node/pull/16050
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
pull/15904/merge
Sarah Meyer 2017-10-06 12:58:55 -07:00 committed by Rich Trott
parent 64aded33ef
commit 50fe1a8409
4 changed files with 25 additions and 2 deletions

View File

@ -21,6 +21,9 @@ const bench = common.createBenchmark(main, {
});
function main({ n, type }) {
// For testing, if supplied with an empty type, default to string.
type = type || 'string';
const [first, second] = inputs[type];
bench.start();

View File

@ -18,6 +18,9 @@ function main({ n, len, type }) {
var arr = Array(len);
var i, opts;
// For testing, if supplied with an empty type, default to denseArray.
type = type || 'denseArray';
switch (type) {
case 'denseArray_showHidden':
opts = { showHidden: true };

View File

@ -29,16 +29,19 @@ const bench = common.createBenchmark(main, {
type: Object.keys(args),
version: ['native', 'js'],
argument: ['true', 'false-primitive', 'false-object'],
millions: ['5']
n: [5e6]
}, {
flags: ['--expose-internals']
});
function main(conf) {
// For testing, if supplied with an empty type, default to ArrayBufferView.
conf.type = conf.type || 'ArrayBufferView';
const util = process.binding('util');
const types = require('internal/util/types');
const n = (+conf.millions * 1e6) | 0;
const n = (+conf.n) | 0;
const func = { native: util, js: types }[conf.version][`is${conf.type}`];
const arg = args[conf.type][conf.argument];

View File

@ -0,0 +1,14 @@
'use strict';
require('../common');
const runBenchmark = require('../common/benchmark');
runBenchmark('util',
['argument=false',
'input=',
'method=Array',
'n=1',
'option=none',
'type=',
'version=native']);