summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-06-08 17:17:26 +0700
committerhathach <[email protected]>2026-06-08 17:17:26 +0700
commit3875e9cde897392255e2bd1a70de3231ec69d482 (patch)
treee8bf71305c9de3fea7a120a679d74061c52cb512
parentfe273aa114c6ee20c23b506949a80490feff69b4 (diff)
test/hil: use ✅/❌ emoji for HIL report pass/fail
Colored emoji render green/red in the GitHub PR comment, far more visible than the monochrome ✔/✖ dingbats. Skip stays ➖. 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 542aa4a11..1d3f50a19 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