56 lines
2.1 KiB
Bash
56 lines
2.1 KiB
Bash
#!/usr/bin/env bash
|
||
set -euo pipefail
|
||
|
||
# Self-host minimal smoke (dev-only)
|
||
# - Emits MIR(JSON v0) via selfhost compiler MVP
|
||
# - Runs a representative VM example with Known rewrite ON/OFF and compares outputs
|
||
|
||
ROOT_DIR=$(cd "$(dirname "$0")/.." && pwd)
|
||
NY_BIN="${ROOT_DIR}/target/release/nyash"
|
||
|
||
if [[ ! -x "${NY_BIN}" ]]; then
|
||
echo "[selfhost-smoke] nyash binary not found at ${NY_BIN}. Please build first: cargo build --release" >&2
|
||
exit 1
|
||
fi
|
||
|
||
echo "[selfhost-smoke] Step 1: Emit JSON via selfhost compiler (lang/, optional)"
|
||
OUT_JSON="/tmp/nyash_selfhost_out.json"
|
||
set -x
|
||
# Use lang side entry (Stage‑B). Emission is optional; failure does not fail the smoke.
|
||
if NYASH_ENABLE_USING=1 NYASH_ALLOW_USING_FILE=1 NYASH_USING_AST=1 NYASH_PARSER_STAGE3=1 \
|
||
"${NY_BIN}" --backend vm "${ROOT_DIR}/lang/src/compiler/entry/compiler_stageb.hako" -- --source 'box Main { static method main() { return 0 } }' > "${OUT_JSON}" 2>/dev/null; then
|
||
:
|
||
else
|
||
echo "[selfhost-smoke] WARN: selfhost compiler emission failed (policy/duplicates?). Continuing." >&2
|
||
fi
|
||
set +x
|
||
|
||
if [[ -s "${OUT_JSON}" ]]; then
|
||
echo "[selfhost-smoke] Emitted JSON: ${OUT_JSON} ($(wc -c < "${OUT_JSON}") bytes)"
|
||
else
|
||
echo "[selfhost-smoke] NOTE: no JSON emitted (skipped). This is optional for the minimal smoke." >&2
|
||
fi
|
||
|
||
echo "[selfhost-smoke] Step 2: Run representative VM example (rewrite=ON/OFF)"
|
||
EXAMPLE="apps/examples/json_query/main.nyash"
|
||
OUT_ON="/tmp/nyash_selfhost_vm_on.txt"
|
||
OUT_OFF="/tmp/nyash_selfhost_vm_off.txt"
|
||
|
||
set -x
|
||
"${NY_BIN}" --backend vm "${EXAMPLE}" > "${OUT_ON}"
|
||
NYASH_REWRITE_KNOWN_DEFAULT=0 "${NY_BIN}" --backend vm "${EXAMPLE}" > "${OUT_OFF}"
|
||
set +x
|
||
|
||
if ! diff -u "${OUT_ON}" "${OUT_OFF}" >/dev/null 2>&1; then
|
||
echo "[selfhost-smoke] WARN: output differs between rewrite ON and OFF" >&2
|
||
echo "--- ON (${OUT_ON})" >&2
|
||
head -n 20 "${OUT_ON}" >&2 || true
|
||
echo "--- OFF (${OUT_OFF})" >&2
|
||
head -n 20 "${OUT_OFF}" >&2 || true
|
||
# Non-fatal: keep smoke informative; do not fail hard unless required.
|
||
else
|
||
echo "[selfhost-smoke] VM outputs match for rewrite ON/OFF (good)."
|
||
fi
|
||
|
||
echo "[selfhost-smoke] PASS"
|