mirror of https://github.com/lukechilds/node.git
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.
37 lines
836 B
37 lines
836 B
'use strict';
|
|
var common = require('../common.js');
|
|
var path = require('path');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
paths: [
|
|
['C:\\orandea\\test\\aaa', 'C:\\orandea\\impl\\bbb'].join('|'),
|
|
['C:\\', 'D:\\'].join('|'),
|
|
['C:\\foo\\bar\\baz', 'C:\\foo\\bar\\baz'].join('|'),
|
|
['C:\\foo\\BAR\\BAZ', 'C:\\foo\\bar\\baz'].join('|'),
|
|
['C:\\foo\\bar\\baz\\quux', 'C:\\'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.win32;
|
|
var from = String(conf.paths);
|
|
var to = '';
|
|
var delimIdx = from.indexOf('|');
|
|
if (delimIdx > -1) {
|
|
to = from.slice(delimIdx + 1);
|
|
from = from.slice(0, delimIdx);
|
|
}
|
|
|
|
// Warmup
|
|
for (var i = 0; i < n; i++) {
|
|
p.relative(from, to);
|
|
}
|
|
|
|
bench.start();
|
|
for (i = 0; i < n; i++) {
|
|
p.relative(from, to);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|