Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/run.js')
-rw-r--r--benchmark/run.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/run.js b/benchmark/run.js
index c0482486671..cb4f8cc0048 100644
--- a/benchmark/run.js
+++ b/benchmark/run.js
@@ -44,6 +44,9 @@ if (format === 'csv') {
}
child.on('message', function(data) {
+ if (data.type !== 'report') {
+ return;
+ }
// Construct configuration string, " A=a, B=b, ..."
let conf = '';
for (const key of Object.keys(data.conf)) {