summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-06-08 17:42:11 +0700
committerhathach <[email protected]>2026-06-08 17:49:07 +0700
commit1b3627d2b6a22e0f8f1a5dcd161121a63b238092 (patch)
tree76a7a11ef19cc6564f4e594d6b59df765672130b
parent3875e9cde897392255e2bd1a70de3231ec69d482 (diff)
test/hil: use ⚪ for skipped in HIL report
Neutral white circle for skipped, giving a ✅/❌/⚪ pass/fail/skip set. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
-rwxr-xr-xtest/hil/hil_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py
index 1d3f50a19..a1c4b7bdd 100755
--- a/test/hil/hil_test.py
+++ b/test/hil/hil_test.py
@@ -67,7 +67,7 @@ STATUS_SKIPPED = "\033[33mSkipped\033[0m"
# Plain (non-ANSI) cell symbols for the markdown matrix report (hil_report.md).
# A missing binary is reported as skipped too.
-REPORT_CELL = {'pass': '✅', 'fail': '❌', 'skip': '➖'}
+REPORT_CELL = {'pass': '✅', 'fail': '❌', 'skip': '⚪'}
verbose = False
test_only = []
@@ -1729,7 +1729,7 @@ def render_matrix(rows_all: list) -> str:
sep = '| ' + '-' * board_w + ' | ' + ' | '.join(':' + '-' * (w - 2) + ':' for w in col_w) + ' |'
body = [line(lbl, [cell(cells, c) for c in columns]) for lbl, cells in rows_all]
- legend = 'Legend: ✅ pass · ❌ fail · ➖ skipped · blank not run'
+ legend = 'Legend: ✅ pass · ❌ fail · ⚪ skipped · blank not run'
return '\n'.join([header, sep] + body) + '\n\n' + legend