phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0

This commit is contained in:
nyash-codex
2025-11-06 15:41:52 +09:00
parent 2dc370223d
commit 77d4fd72b3
1658 changed files with 6288 additions and 2612 deletions

View File

@ -3,7 +3,7 @@ set -euo pipefail
ROOT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." &>/dev/null && pwd)
BIN="$ROOT_DIR/target/release/nyash"
APP="$ROOT_DIR/test_filebox_simple.nyash"
APP="$ROOT_DIR/test_filebox_simple.hako"
echo "[plugin-v2-smoke] building nyash (release)…" >&2
cargo build --release -j 2 >/dev/null
@ -78,7 +78,7 @@ grep -q "libnyash_net_plugin.so" /tmp/nyash-plugin-v2-smoke.out || {
echo "plugin-v2-smoke: OK" >&2
# Optional functional sample (regex + response only)
FUNC_APP="$ROOT_DIR/apps/tests/plugin_v2_functional.nyash"
FUNC_APP="$ROOT_DIR/apps/tests/plugin_v2_functional.hako"
if [[ -f "$FUNC_APP" ]]; then
echo "[plugin-v2-smoke] functional: $BIN --backend vm $FUNC_APP" >&2
set +e
@ -96,7 +96,7 @@ if [[ -f "$FUNC_APP" ]]; then
fi
# Optional functional sample (net round-trip)
NET_APP="$ROOT_DIR/apps/tests/net_roundtrip.nyash"
NET_APP="$ROOT_DIR/apps/tests/net_roundtrip.hako"
if [[ -f "$NET_APP" ]]; then
echo "[plugin-v2-smoke] functional (net): $BIN --backend vm $NET_APP" >&2
set +e