You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tests): POSIX arithmetic in e2e; prune Zig build dirs in aspect
- tests/e2e/lifecycle_e2e.sh: replace ((PASS++))/((FAIL++))/((SKIP++))
with PASS=$((PASS+1)) etc. Under `set -euo pipefail` a post-increment
of a 0-valued var returns exit 1 and aborted the script on the first
check (same fix already present in the aspect test).
- tests/aspect/cross_cutting_test.sh: prune .zig-cache/ and zig-out/
from the Zig SPDX `find` so a generated, header-less
dependencies.zig left by `zig build` cannot skew the count when the
test runs in an already-built tree.
https://claude.ai/code/session_01GJatEm2TVFSTBEkKXmserJ
0 commit comments