Skip to content

Commit 01e1cbf

Browse files
committed
optional plot names
1 parent ec60119 commit 01e1cbf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

atf_core/src/atf_core/configuration_parser.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,11 @@ def get_sorted_plot_dicts(self, atf_result, filter_tests, filter_testblocks, fil
323323
# mtb
324324
if metric.name not in mtb.keys():
325325
mtb[metric.name] = {}
326-
if test.name not in mtb[metric.name].keys():
327-
mtb[metric.name][test.name] = {}
328-
mtb[metric.name][test.name][testblock.name] = metric
326+
test_name = test.name
327+
#test_name = test.name + "\n" + test.robot
328+
if test_name not in mtb[metric.name].keys():
329+
mtb[metric.name][test_name] = {}
330+
mtb[metric.name][test_name][testblock.name] = metric
329331

330332
ret = {}
331333
ret['tbm'] = tbm

0 commit comments

Comments
 (0)