File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -675,10 +675,9 @@ def generate_test_summary_by_target(test_summary):
675
675
unique_test_desc = get_unique_value_from_summary_ext (test_summary , TEST_INDEX , DESC_INDEX )
676
676
unique_toolchains = get_unique_value_from_summary (test_summary , TOOLCHAIN_INDEX )
677
677
678
- result = ""
678
+ result = "Test summary: \n "
679
679
result_dict = {} # test : { toolchain : result }
680
680
for target in unique_targets :
681
- result = "Test summary:\n "
682
681
for test in test_summary :
683
682
if test [TEST_INDEX ] not in result_dict :
684
683
result_dict [test [TEST_INDEX ]] = { }
@@ -696,8 +695,8 @@ def generate_test_summary_by_target(test_summary):
696
695
for toolchain in unique_toolchains :
697
696
row .append (test_results [toolchain ])
698
697
pt .add_row (row )
699
- result += pt .get_string ()
700
- result += "\n "
698
+ result += pt .get_string ()
699
+ result += "\n \n "
701
700
return result
702
701
703
702
You can’t perform that action at this time.
0 commit comments