File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -261,9 +261,11 @@ def main():
261
261
library_build_success = True
262
262
except ToolException as e :
263
263
# ToolException output is handled by the build log
264
+ print ("[ERROR] " + str (e ))
264
265
pass
265
266
except NotSupportedException as e :
266
267
# NotSupportedException is handled by the build log
268
+ print ("[ERROR] " + str (e ))
267
269
pass
268
270
except Exception as e :
269
271
if options .verbose :
Original file line number Diff line number Diff line change @@ -195,7 +195,6 @@ def test_iar_default_lib_std_exception(self):
195
195
"""Test that an exception is raised if the std C library is not supported for a target on the IAR toolchain."""
196
196
mock_target = mock .MagicMock ()
197
197
mock_target .core = "Cortex-M4"
198
- mock_target .microlib_supported = False
199
198
mock_target .default_lib = "std"
200
199
mock_target .supported_c_libs = {"iar" : ["small" ]}
201
200
mock_target .supported_toolchains = ["IAR" ]
@@ -206,7 +205,6 @@ def test_iar_default_lib_small_exception(self):
206
205
"""Test that an exception is raised if the small C library is not supported for a target on the IAR toolchain."""
207
206
mock_target = mock .MagicMock ()
208
207
mock_target .core = "Cortex-M4"
209
- mock_target .microlib_supported = False
210
208
mock_target .default_lib = "small"
211
209
mock_target .supported_c_libs = {"iar" : ["std" ]}
212
210
mock_target .supported_toolchains = ["IAR" ]
You can’t perform that action at this time.
0 commit comments