aboutsummaryrefslogtreecommitdiff
path: root/benchmark/compare.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/compare.js')
-rw-r--r--benchmark/compare.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/benchmark/compare.js b/benchmark/compare.js
index aa6ddb72c0..6b51a70eb9 100644
--- a/benchmark/compare.js
+++ b/benchmark/compare.js
@@ -20,10 +20,7 @@ const cli = CLI(`usage: ./node compare.js [options] [--] <category> ...
--filter pattern string to filter benchmark scripts
--set variable=value set benchmark variable (can be repeated)
--no-progress don't show benchmark progress indicator
-`, {
- arrayArgs: ['set'],
- boolArgs: ['no-progress']
-});
+`, { arrayArgs: ['set'], boolArgs: ['no-progress'] });
if (!cli.optional.new || !cli.optional.old) {
cli.abort(cli.usage);
@@ -85,8 +82,8 @@ if (showProgress) {
// Escape quotes (") for correct csv formatting
conf = conf.replace(/"/g, '""');
- console.log(`"${job.binary}", "${job.filename}", "${conf}", ${
- data.rate}, ${data.time}`);
+ console.log(`"${job.binary}", "${job.filename}", "${conf}", ` +
+ `${data.rate}, ${data.time}`);
if (showProgress) {
// One item in the subqueue has been completed.
progress.completeConfig(data);