test(joinir): Phase 129 join_k as-last fixture + VM smoke

This commit is contained in:
nyash-codex
2025-12-18 07:53:27 +09:00
parent 088122df71
commit f0a03d20d0
2 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,60 @@
#!/bin/bash
# Phase 129-B: If-only join_k as-last (Normalized shadow, VM)
#
# Dev-only gate:
# - NYASH_JOINIR_DEV=1 enables shadow lowering + verification
# - HAKO_JOINIR_STRICT=1 makes verification fail-fast
source "$(dirname "$0")/../../../lib/test_runner.sh"
source "$(dirname "$0")/../../../lib/output_validator.sh"
export SMOKES_USE_PYVM=0
require_env || exit 2
PASS_COUNT=0
FAIL_COUNT=0
RUN_TIMEOUT_SECS=${RUN_TIMEOUT_SECS:-10}
echo "[INFO] Phase 129-B: If-only join_k as-last (Normalized shadow, VM)"
echo "[INFO] Test 1: phase129_if_only_join_k_as_last_min.hako"
INPUT="$NYASH_ROOT/apps/tests/phase129_if_only_join_k_as_last_min.hako"
set +e
OUTPUT=$(timeout "$RUN_TIMEOUT_SECS" env \
NYASH_DISABLE_PLUGINS=1 \
HAKO_JOINIR_STRICT=1 \
NYASH_JOINIR_DEV=1 \
"$NYASH_BIN" --backend vm "$INPUT" 2>&1)
EXIT_CODE=$?
set -e
if [ "$EXIT_CODE" -eq 124 ]; then
echo "[FAIL] hakorune timed out (>${RUN_TIMEOUT_SECS}s)"
FAIL_COUNT=$((FAIL_COUNT + 1))
elif [ "$EXIT_CODE" -eq 0 ]; then
EXPECTED="2"
if validate_numeric_output 1 "$EXPECTED" "$OUTPUT"; then
echo "[PASS] Output verified: 2 (exit code: $EXIT_CODE)"
PASS_COUNT=$((PASS_COUNT + 1))
else
echo "[INFO] output (tail):"
echo "$OUTPUT" | tail -n 50 || true
FAIL_COUNT=$((FAIL_COUNT + 1))
fi
else
echo "[FAIL] hakorune failed with exit code $EXIT_CODE"
echo "[INFO] output (tail):"
echo "$OUTPUT" | tail -n 50 || true
FAIL_COUNT=$((FAIL_COUNT + 1))
fi
echo "[INFO] PASS: $PASS_COUNT, FAIL: $FAIL_COUNT"
if [ "$FAIL_COUNT" -eq 0 ]; then
test_pass "phase129_join_k_as_last_vm: All tests passed"
exit 0
else
test_fail "phase129_join_k_as_last_vm: $FAIL_COUNT test(s) failed"
exit 1
fi