summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-12-11 14:52:21 +0700
committerhathach <[email protected]>2023-12-11 14:52:21 +0700
commite1142d4527aa811d89276abe37060503703011b8 (patch)
tree00a1178780bd198a0856d13f428c06ce44c9899c /test
parentc8291168301b597f586d15510c780a9bdb8d0e69 (diff)
wrap up s3 hil test
Diffstat (limited to 'test')
-rw-r--r--test/hil/hil_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py
index 1b1349fb8..fe31a54e8 100644
--- a/test/hil/hil_test.py
+++ b/test/hil/hil_test.py
@@ -304,9 +304,11 @@ def main(config_file, board):
test_list.remove(skip)
for test in test_list:
- # cmake, make
fw_list = [
+ # cmake: esp32 use .bin file
f'cmake-build/cmake-build-{item["name"]}/device/{test}/{test}.elf',
+ f'cmake-build/cmake-build-{item["name"]}/device/{test}/{test}.bin',
+ # make
f'examples/device/{test}/_build/{item["name"]}/{test}.elf'
]