mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
58d26e2421
Modified fs benchmarks to use more unique args to avoid collision. PR-URL: https://github.com/nodejs/node/pull/16049 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
42 lines
854 B
JavaScript
42 lines
854 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
process.chdir(__dirname);
|
|
const resolved_path = path.resolve(__dirname, '../../lib/');
|
|
const relative_path = path.relative(__dirname, '../../lib/');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e4],
|
|
pathType: ['relative', 'resolved'],
|
|
});
|
|
|
|
|
|
function main(conf) {
|
|
const n = conf.n >>> 0;
|
|
const pathType = conf.pathType;
|
|
|
|
bench.start();
|
|
if (pathType === 'relative')
|
|
relativePath(n);
|
|
else if (pathType === 'resolved')
|
|
resolvedPath(n);
|
|
else
|
|
throw new Error(`unknown "pathType": ${pathType}`);
|
|
bench.end(n);
|
|
}
|
|
|
|
function relativePath(n) {
|
|
for (var i = 0; i < n; i++) {
|
|
fs.realpathSync(relative_path);
|
|
}
|
|
}
|
|
|
|
function resolvedPath(n) {
|
|
for (var i = 0; i < n; i++) {
|
|
fs.realpathSync(resolved_path);
|
|
}
|
|
}
|