Skip to content

Commit 1de0ff0

Browse files
Merge branch 'master' into add_dragonfly_f413rh
2 parents 7f3bcd2 + 37afc0d commit 1de0ff0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/mbed-greentea/mbed_greentea/mbed_greentea_cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def dump_report_to_text_file(filename, content):
983983
"""
984984
try:
985985
with io.open(filename, encoding="utf-8", errors="backslashreplace", mode="w") as f:
986-
f.write(content.decode('utf-8'))
986+
f.write(content)
987987
except IOError as e:
988988
gt_logger.gt_log_err("can't export to '%s', reason:"% filename)
989989
gt_logger.gt_log_err(str(e))
@@ -1049,10 +1049,8 @@ def dump_report_to_text_file(filename, content):
10491049
if test_platforms_match == 0:
10501050
# No tests were executed
10511051
gt_logger.gt_log_warn("no platform/target matching tests were found!")
1052-
test_exec_retcode += -10
10531052
if target_platforms_match == 0:
10541053
# No platforms were tested
10551054
gt_logger.gt_log_warn("no matching platforms were found!")
1056-
test_exec_retcode += -100
10571055

10581056
return (test_exec_retcode)

src/mbed_os_tools/detect/platform_database.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
u"0715": u"NUCLEO_L053R8",
122122
u"0720": u"NUCLEO_F401RE",
123123
u"0725": u"NUCLEO_F030R8",
124+
u"0729": u"NUCLEO_G071RB",
124125
u"0730": u"NUCLEO_F072RB",
125126
u"0735": u"NUCLEO_F334R8",
126127
u"0740": u"NUCLEO_F411RE",
@@ -249,6 +250,7 @@
249250
u'1907': u'CY8CPROTO_064_SB',
250251
u'1908': u'CYW9P62S1_43438EVB_01',
251252
u'1909': u'CY8CPROTO_062S2_43012',
253+
u'190A': u'CY8CKIT_064S2_4343W',
252254
u'190B': u'CY8CKIT_062S2_43012',
253255
u'190E': u'CY8CPROTO_062S3_4343W',
254256
u"2000": u"EFM32_G8XX_STK",

0 commit comments

Comments
 (0)