summaryrefslogtreecommitdiff
path: root/test/hil
diff options
context:
space:
mode:
Diffstat (limited to 'test/hil')
-rw-r--r--test/hil/helper/hil_pool_check.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/hil/helper/hil_pool_check.py b/test/hil/helper/hil_pool_check.py
index 371aff1e1..8ad68bc6d 100644
--- a/test/hil/helper/hil_pool_check.py
+++ b/test/hil/helper/hil_pool_check.py
@@ -328,7 +328,8 @@ def flash(board: dict, fw, allow_recovery: bool, probe_port: str, note: list) ->
if rc == 0:
return True
if rc == 127: # flasher binary missing: retries/probe recovery can't fix env
- note.append(f'flasher tool missing ({err}) — esptool needs the ESP-IDF env (get-idf)'
+ note.append(f'flasher tool missing ({err}) — esptool needs the ESP-IDF env '
+ f'(. $HOME/code/esp-idf/export.sh)'
if board['flasher']['name'].lower() == 'esptool' else
f'flasher tool missing: {err}')
return False
@@ -487,7 +488,8 @@ def ensure_fw(board: dict, variant: str, example: str, note: list):
rc = build_example(board, variant, example)
if rc == 127 and board['flasher']['name'].lower() == 'esptool':
_builds[key] = (None, 'no-env')
- note.append(f'cannot build {base}: ESP-IDF env missing (get-idf)')
+ note.append(f'cannot build {base}: ESP-IDF env missing '
+ f'(source $HOME/code/esp-idf/export.sh)')
return None
if rc == 124: # hung build: a deps/cache retry cannot cure it, don't double the stall
_builds[key] = (None, 'timeout')