mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
e1348b0819
This commit splits each path benchmark into separate posix and Windows benchmark files. This allows benchmarking (platform-)specific inputs against specific platforms (only). PR-URL: https://github.com/nodejs/node/pull/5123 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com>
34 lines
646 B
JavaScript
34 lines
646 B
JavaScript
var common = require('../common.js');
|
|
var path = require('path');
|
|
var v8 = require('v8');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
path: [
|
|
'',
|
|
'.',
|
|
'/../',
|
|
'/foo',
|
|
'/foo/bar',
|
|
'/foo/bar//baz/asdf/quux/..'
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.posix;
|
|
var input = '' + conf.path;
|
|
|
|
// Force optimization before starting the benchmark
|
|
p.normalize(input);
|
|
v8.setFlagsFromString('--allow_natives_syntax');
|
|
eval('%OptimizeFunctionOnNextCall(p.normalize)');
|
|
p.normalize(input);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.normalize(input);
|
|
}
|
|
bench.end(n);
|
|
}
|