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>
41 lines
1014 B
JavaScript
41 lines
1014 B
JavaScript
var common = require('../common.js');
|
|
var path = require('path');
|
|
var v8 = require('v8');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
paths: [
|
|
['/data/orandea/test/aaa', '/data/orandea/impl/bbb'].join('|'),
|
|
['/', '/var'].join('|'),
|
|
['/', '/'].join('|'),
|
|
['/var', '/bin'].join('|'),
|
|
['/foo/bar/baz/quux', '/'].join('|'),
|
|
['/foo/bar/baz/quux', '/foo/bar/baz/quux'].join('|'),
|
|
['/foo/bar/baz/quux', '/var/log'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.posix;
|
|
var from = '' + conf.paths;
|
|
var to = '';
|
|
var delimIdx = from.indexOf('|');
|
|
if (delimIdx > -1) {
|
|
to = from.slice(delimIdx + 1);
|
|
from = from.slice(0, delimIdx);
|
|
}
|
|
|
|
// Force optimization before starting the benchmark
|
|
p.relative(from, to);
|
|
v8.setFlagsFromString('--allow_natives_syntax');
|
|
eval('%OptimizeFunctionOnNextCall(p.relative)');
|
|
p.relative(from, to);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.relative(from, to);
|
|
}
|
|
bench.end(n);
|
|
}
|