From 73c5594573d88bf950997a84a6efde084699abef Mon Sep 17 00:00:00 2001 From: Maciej Perkowski Date: Wed, 14 Apr 2021 16:57:15 +0200 Subject: [PATCH] twister: Fix ram/rom reporting The info of rom/ram usage by an application was lost along the way of data processing in twister. The commit add a line which pass further these metrices as well. Signed-off-by: Maciej Perkowski --- scripts/twister | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/twister b/scripts/twister index 300dd8c3d5f..866beb6ed25 100755 --- a/scripts/twister +++ b/scripts/twister @@ -1215,6 +1215,7 @@ def main(): except queue.Empty: break else: + inst.metrics.update(suite.instances[inst.name].metrics) inst.metrics["handler_time"] = inst.handler.duration if inst.handler else 0 inst.metrics["unrecognized"] = [] suite.instances[inst.name] = inst