Skip to content

Commit 0541598

Browse files
committed
mimxrt1015_evk does not work reliably in hil pool (like metro m7).
1 parent ea4f9ce commit 0541598

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

test/hil/hil_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,11 @@ def main():
436436
else:
437437
config_boards = [e for e in config['boards'] if e['name'] in boards]
438438

439-
err_count_list = 0
439+
err_count_list = []
440440
with Pool(processes=os.cpu_count()) as pool:
441441
err_count_list = pool.map(test_board, config_boards)
442-
443-
sys.exit(sum(err_count_list))
442+
err_count = sum(err_count_list)
443+
sys.exit(err_count)
444444

445445

446446
if __name__ == '__main__':

test/hil/rpi.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@
1414
"flasher_sn": "E6614C311B597D32",
1515
"flasher_args": "-f interface/cmsis-dap.cfg -f target/atsame5x.cfg -c \"adapter speed 5000\""
1616
},
17-
{
18-
"name": "metro_m7_1011",
19-
"uid": "9CE8715DD71137363E00005002004200",
20-
"flasher": "jlink",
21-
"flasher_sn": "000611000000",
22-
"flasher_args": "-device MIMXRT1011xxx5A"
23-
},
2417
{
2518
"name": "max32666fthr",
2619
"uid": "0C81464124010B20FF0A08CC2C",
@@ -67,6 +60,13 @@
6760
}
6861
],
6962
"boards-skip": [
63+
{
64+
"name": "mimxrt1015_evk",
65+
"uid": "DC28F865D2111D228D00B0543A70463C",
66+
"flasher": "jlink",
67+
"flasher_sn": "000726284213",
68+
"flasher_args": "-device MIMXRT1015DAF5A"
69+
},
7070
{
7171
"name": "nanoch32v203",
7272
"uid": "CDAB277B0FBC03E339E339E3",

0 commit comments

Comments
 (0)