diff --git a/benchmark/common.js b/benchmark/common.js index d41d46fd7612d4..77ebe0bd1dc37f 100644 --- a/benchmark/common.js +++ b/benchmark/common.js @@ -42,8 +42,8 @@ Benchmark.prototype._parseArgs = function(argv, configs) { const extraOptions = {}; // Parse configuration arguments for (const arg of argv) { - const match = arg.match(/^(.+?)=([\s\S]+)$/); - if (!match) { + const match = arg.match(/^(.+?)=([\s\S]*)$/); + if (!match || !match[1]) { console.error('bad argument: ' + arg); process.exit(1); }