diff options
| author | hathach <[email protected]> | 2024-08-19 20:09:32 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-08-19 21:22:59 +0700 |
| commit | 0541598d07fd57e4ad0067abe85c4c7a71b3756a (patch) | |
| tree | 1cc0eed20cb8950d7a8b97cfb80a12a3eaf3fb89 | |
| parent | ea4f9ceb58f0aa6acc86bbe3083596a98b5355fd (diff) | |
mimxrt1015_evk does not work reliably in hil pool (like metro m7).
| -rw-r--r-- | test/hil/hil_test.py | 6 | ||||
| -rw-r--r-- | test/hil/rpi.json | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py index e5900c616..09c30bf52 100644 --- a/test/hil/hil_test.py +++ b/test/hil/hil_test.py @@ -436,11 +436,11 @@ def main(): else: config_boards = [e for e in config['boards'] if e['name'] in boards] - err_count_list = 0 + err_count_list = [] with Pool(processes=os.cpu_count()) as pool: err_count_list = pool.map(test_board, config_boards) - - sys.exit(sum(err_count_list)) + err_count = sum(err_count_list) + sys.exit(err_count) if __name__ == '__main__': diff --git a/test/hil/rpi.json b/test/hil/rpi.json index b87b80300..49d2d8286 100644 --- a/test/hil/rpi.json +++ b/test/hil/rpi.json @@ -15,13 +15,6 @@ "flasher_args": "-f interface/cmsis-dap.cfg -f target/atsame5x.cfg -c \"adapter speed 5000\"" }, { - "name": "metro_m7_1011", - "uid": "9CE8715DD71137363E00005002004200", - "flasher": "jlink", - "flasher_sn": "000611000000", - "flasher_args": "-device MIMXRT1011xxx5A" - }, - { "name": "max32666fthr", "uid": "0C81464124010B20FF0A08CC2C", "flasher": "openocd_adi", @@ -68,6 +61,13 @@ ], "boards-skip": [ { + "name": "mimxrt1015_evk", + "uid": "DC28F865D2111D228D00B0543A70463C", + "flasher": "jlink", + "flasher_sn": "000726284213", + "flasher_args": "-device MIMXRT1015DAF5A" + }, + { "name": "nanoch32v203", "uid": "CDAB277B0FBC03E339E339E3", "flasher": "openocd_wch", |
