@@ -599,7 +599,6 @@ def build_project(src_paths, build_path, target, toolchain_name,
599
599
if report != None :
600
600
end = time ()
601
601
cur_result ["elapsed_time" ] = end - start
602
- cur_result ["output" ] = notify .get_output () + memap_table
603
602
cur_result ["result" ] = "OK"
604
603
cur_result ["memory_usage" ] = (memap_instance .mem_report
605
604
if memap_instance is not None else None )
@@ -622,12 +621,7 @@ def build_project(src_paths, build_path, target, toolchain_name,
622
621
623
622
cur_result ["elapsed_time" ] = end - start
624
623
625
- toolchain_output = notify .get_output ()
626
- if toolchain_output :
627
- cur_result ["output" ] += toolchain_output
628
-
629
624
add_result_to_report (report , cur_result )
630
-
631
625
# Let Exception propagate
632
626
raise
633
627
@@ -754,7 +748,6 @@ def build_library(src_paths, build_path, target, toolchain_name,
754
748
if report != None :
755
749
end = time ()
756
750
cur_result ["elapsed_time" ] = end - start
757
- cur_result ["output" ] = notify .get_output ()
758
751
cur_result ["result" ] = "OK"
759
752
760
753
@@ -772,10 +765,6 @@ def build_library(src_paths, build_path, target, toolchain_name,
772
765
773
766
cur_result ["elapsed_time" ] = end - start
774
767
775
- toolchain_output = notify .get_output ()
776
- if toolchain_output :
777
- cur_result ["output" ] += toolchain_output
778
-
779
768
add_result_to_report (report , cur_result )
780
769
781
770
# Let Exception propagate
@@ -926,7 +915,6 @@ def build_lib(lib_id, target, toolchain_name, clean=False, macros=None,
926
915
if report != None and needed_update :
927
916
end = time ()
928
917
cur_result ["elapsed_time" ] = end - start
929
- cur_result ["output" ] = notify .get_output ()
930
918
cur_result ["result" ] = "OK"
931
919
932
920
add_result_to_report (report , cur_result )
@@ -938,10 +926,6 @@ def build_lib(lib_id, target, toolchain_name, clean=False, macros=None,
938
926
cur_result ["result" ] = "FAIL"
939
927
cur_result ["elapsed_time" ] = end - start
940
928
941
- toolchain_output = notify .get_output ()
942
- if toolchain_output :
943
- cur_result ["output" ] += toolchain_output
944
-
945
929
add_result_to_report (report , cur_result )
946
930
947
931
# Let Exception propagate
@@ -1085,7 +1069,6 @@ def build_mbed_libs(target, toolchain_name, clean=False, macros=None,
1085
1069
if report != None :
1086
1070
end = time ()
1087
1071
cur_result ["elapsed_time" ] = end - start
1088
- cur_result ["output" ] = notify .get_output ()
1089
1072
cur_result ["result" ] = "OK"
1090
1073
1091
1074
add_result_to_report (report , cur_result )
@@ -1098,10 +1081,6 @@ def build_mbed_libs(target, toolchain_name, clean=False, macros=None,
1098
1081
cur_result ["result" ] = "FAIL"
1099
1082
cur_result ["elapsed_time" ] = end - start
1100
1083
1101
- toolchain_output = notify .get_output ()
1102
- if toolchain_output :
1103
- cur_result ["output" ] += toolchain_output
1104
-
1105
1084
cur_result ["output" ] += str (exc )
1106
1085
1107
1086
add_result_to_report (report , cur_result )
0 commit comments