summaryrefslogtreecommitdiff
path: root/benchmark/fs/readfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/fs/readfile.js')
-rw-r--r--benchmark/fs/readfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/fs/readfile.js b/benchmark/fs/readfile.js
index 361ffbff59..3f996e02ed 100644
--- a/benchmark/fs/readfile.js
+++ b/benchmark/fs/readfile.js
@@ -14,12 +14,12 @@ const filename = path.resolve(tmpdir.path,
`.removeme-benchmark-garbage-${process.pid}`);
const bench = common.createBenchmark(main, {
- dur: [5],
+ duration: [5],
len: [1024, 16 * 1024 * 1024],
concurrent: [1, 10]
});
-function main({ len, dur, concurrent }) {
+function main({ len, duration, concurrent }) {
try { fs.unlinkSync(filename); } catch {}
let data = Buffer.alloc(len, 'x');
fs.writeFileSync(filename, data);
@@ -33,7 +33,7 @@ function main({ len, dur, concurrent }) {
bench.end(reads);
try { fs.unlinkSync(filename); } catch {}
process.exit(0);
- }, dur * 1000);
+ }, duration * 1000);
function read() {
fs.readFile(filename, afterRead);