@@ -132,7 +132,7 @@ jobs:
132132
133133 - name : Install the emulator (xim:qemu-riscv)
134134 run : |
135- # ⚠️ BOTH homes. The shim on PATH dispatches against whichever home
135+ # BOTH homes. The shim on PATH dispatches against whichever home
136136 # owns it, and `mcpp run` runs the runner through that shim — so an
137137 # emulator installed only in the ambient xlings home answers
138138 # "xlings: 'qemu-system-riscv64' is not installed" when mcpp asks.
@@ -153,7 +153,7 @@ jobs:
153153 XLINGS_HOME="${MCPP_HOME:-$HOME/.mcpp}/registry" \
154154 "$XLINGS_BIN" install xim:picolibc-riscv -y
155155 test -d "${MCPP_HOME:-$HOME/.mcpp}/registry/data/xpkgs/xim-x-picolibc-riscv"
156- # ⚠️ The M-profile emulator, in BOTH homes for the reason above.
156+ # The M-profile emulator, in BOTH homes for the reason above.
157157 # `xim:qemu-arm` carries `qemu-system-arm` as well as
158158 # `qemu-system-aarch64`; test 332 addresses it by absolute path out of
159159 # the payload, so what matters is that the payload EXISTS in the home
@@ -211,19 +211,19 @@ jobs:
211211 grep -q 'PASS: the freestanding std subset' \
212212 133_freestanding_std_subset.sh.log || {
213213 echo "133 (std subset) skipped on the runner that must run it"; exit 1; }
214- # ⚠️ 332 declares `# requires: qemu-arm`, which no sharded runner has
214+ # 332 declares `# requires: qemu-arm`, which no sharded runner has
215215 # — so on the shards it exits 0 without running. This job is the only
216216 # place its PASS line can be demanded.
217217 grep -q 'PASS: cortex-m rows build, boot' \
218218 332_cortex_m_builds_and_boots.sh.log || {
219219 echo "332 (cortex-m) skipped on the runner that must run it"; exit 1; }
220- # ⭐ And a count, because four `grep -q` calls that each matched say
220+ # And a count, because four `grep -q` calls that each matched say
221221 # nothing about how many rows the script actually booted: a fixture
222222 # that stopped iterating would still print its PASS line.
223223 booted=$(grep -c 'booted on ' 332_cortex_m_builds_and_boots.sh.log || true)
224224 [ "$booted" = "4" ] || {
225225 echo "332 booted $booted rows, expected 4"; exit 1; }
226- # ⚠️ 336 IS HERE FOR THE SAME REASON, AND ADDING IT TO THE LOOP ABOVE
226+ # 336 IS HERE FOR THE SAME REASON, AND ADDING IT TO THE LOOP ABOVE
227227 # WITHOUT ADDING IT HERE WOULD HAVE BEEN THE SAME DEFECT: it declares
228228 # `# requires: qemu-arm`, so on a shard it exits 0 having run nothing.
229229 grep -q 'PASS: armv7-a rows build, boot' \
@@ -232,7 +232,7 @@ jobs:
232232 a32=$(grep -c 'booted on virt' 336_armv7a_builds_and_boots.sh.log || true)
233233 [ "$a32" = "2" ] || {
234234 echo "336 booted $a32 rows, expected 2"; exit 1; }
235- # ⚠️ 338 SKIPS UNTIL `xim:picolibc-arm` IS PUBLISHED, and a skip here
235+ # 338 SKIPS UNTIL `xim:picolibc-arm` IS PUBLISHED, and a skip here
236236 # is legitimate rather than a defect — the payload is a separate
237237 # release. So its PASS line is NOT demanded; what IS demanded is that
238238 # the script either passed or said why, which is what distinguishes a
0 commit comments