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.
25 lines
522 B
25 lines
522 B
'use strict';
|
|
const common = require('../common.js');
|
|
const path = require('path');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
paths: [
|
|
'',
|
|
['', ''].join('|'),
|
|
['c:/ignore', 'd:\\a/b\\c/d', '\\e.exe'].join('|'),
|
|
['c:/blah\\blah', 'd:/games', 'c:../a'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const p = path.win32;
|
|
const args = String(conf.paths).split('|');
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.resolve.apply(null, args);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|