You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
560 B

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');
}