node/benchmark/path/relative.js
Nathan Woltman 0d15161c24 benchmark: Add some path benchmarks for #1778
Path functions being benchmarked are:
* format
* isAbsolute
* join
* normalize
* relative
* resolve

PR-URL: https://github.com/nodejs/io.js/pull/1778
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2015-07-04 13:30:20 +02:00

26 lines
560 B
JavaScript

var common = require('../common.js');
var path = require('path');
var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e5],
});
function main(conf) {
var n = +conf.n;
var runTest = conf.type === 'win32' ? runWin32Test : runPosixTest;
bench.start();
for (var i = 0; i < n; i++) {
runTest();
}
bench.end(n);
}
function runWin32Test() {
path.win32.relative('C:\\orandea\\test\\aaa', 'C:\\orandea\\impl\\bbb');
}
function runPosixTest() {
path.posix.relative('/data/orandea/test/aaa', '/data/orandea/impl/bbb');
}