From 0691aff921e14917f1a51158fb68d821e98bb90d Mon Sep 17 00:00:00 2001 From: Till Schneidereit Date: Thu, 27 Aug 2015 20:37:05 +0200 Subject: [PATCH] Report all "Not Implemented" messages when creating the SWF test run reports --- utils/report.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/report.js b/utils/report.js index 5e44d56805..e36410b0cf 100644 --- a/utils/report.js +++ b/utils/report.js @@ -64,7 +64,7 @@ histogramNames.forEach(function (n) { print(); print(n + " Count: " + h.length); print(); - histogram(h, 10).forEach(function (v) { + histogram(h, n === "Not Implemented" ? 1 : 10).forEach(function (v) { print(v[1] + ": " + v[0]); }); -}); \ No newline at end of file +});