* WIP: sync before merging origin/main * fix: unify using/module + build CLI; add missing helper in runner; build passes; core smokes green; jit any.len string now returns 3 * Apply local changes after merging main; keep docs/phase-15 removed per main; add phase-15.1 docs and tests * Remove legacy docs/phase-15/README.md to align with main * integration: add Core-13 pure CI, tests, and minimal LLVM execute bridge (no docs) (#125) Co-authored-by: Tomoaki <tomoaki@example.com> --------- Co-authored-by: Selfhosting Dev <selfhost@example.invalid> Co-authored-by: Tomoaki <tomoaki@example.com>
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
ROOT_DIR=$(CDPATH= cd -- "$SCRIPT_DIR/.." && pwd)
|
|
BIN="$ROOT_DIR/target/release/nyash"
|
|
|
|
if [ ! -x "$BIN" ]; then
|
|
cargo build --release --features cranelift-jit >/dev/null
|
|
fi
|
|
|
|
TMPJSON=$(mktemp)
|
|
cat >"$TMPJSON" <<'JSON'
|
|
{"version":0,"kind":"Program","body":[
|
|
{"type":"Extern","iface":"env.modules","method":"set","args":[{"type":"Str","value":"acme.mod"},{"type":"Int","value":42}]},
|
|
{"type":"Return","expr":{"type":"Binary","op":"-","lhs":{"type":"Extern","iface":"env.modules","method":"get","args":[{"type":"Str","value":"acme.mod"}]},"rhs":{"type":"Int","value":42}}}
|
|
]}
|
|
JSON
|
|
|
|
NYASH_DISABLE_PLUGINS=1 "$BIN" --backend vm --json-file "$TMPJSON" > /tmp/nyash-modules-smoke.out || true
|
|
if rg -q '^Result:\s*0\b' /tmp/nyash-modules-smoke.out; then
|
|
echo "PASS: modules (env.modules set/get)" >&2
|
|
else
|
|
echo "FAIL: modules (env.modules set/get)" >&2
|
|
sed -n '1,120p' /tmp/nyash-modules-smoke.out >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "All PASS" >&2
|