From c32379171d6c94891802464177c36fb399e9b190 Mon Sep 17 00:00:00 2001 From: wangdequan Date: Mon, 8 Jun 2026 05:14:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=A9=E5=B1=95=E8=A7=A3=E9=87=8A=E5=99=A8WA?= =?UTF-8?q?SM=E5=8F=82=E6=95=B0=E5=A4=B9=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 结论:解释器核心WASM验证新增主轴定向、注释日志和编号参数夹具,继续直接复用LinuxCNC解释器源码与现有canonical期望。 --- wasm-port/docs/compatibility-validation.md | 9 +++++---- wasm-port/tests/wasm/node/verify_interp_wasm.mjs | 3 +++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/wasm-port/docs/compatibility-validation.md b/wasm-port/docs/compatibility-validation.md index bc1d634..c8db8bf 100644 --- a/wasm-port/docs/compatibility-validation.md +++ b/wasm-port/docs/compatibility-validation.md @@ -194,10 +194,11 @@ Current full-core validation is native-only. WASM/SDK validation covers the INI parser smoke harness and an initial interpreter-core canonical event smoke for `minimal_linear`, `arc_semantics`, `length_units`, `modal_incremental`, `plane_selection`, `coordinate_offsets`, `g53_machine_coordinates`, -`feed_control_modes`, `position_params`, and `probe_semantics`. OPFS validation -is limited to the JavaScript host-boundary adapter plus the INI browser smoke -harness. Full browser coverage, full SDK coverage, and full machine-session -validation remain future work. +`feed_control_modes`, `position_params`, `probe_semantics`, `spindle_orient`, +`comment_logging`, and `numbered_params`. OPFS validation is limited to the +JavaScript host-boundary adapter plus the INI browser smoke harness. Full +browser coverage, full SDK coverage, and full machine-session validation remain +future work. The current fixture expectations validate standalone behavior against both the vendored LinuxCNC source path and an upstream `rs274` side-by-side baseline for diff --git a/wasm-port/tests/wasm/node/verify_interp_wasm.mjs b/wasm-port/tests/wasm/node/verify_interp_wasm.mjs index bce69cf..c1fab56 100644 --- a/wasm-port/tests/wasm/node/verify_interp_wasm.mjs +++ b/wasm-port/tests/wasm/node/verify_interp_wasm.mjs @@ -51,6 +51,9 @@ const fixtureNames = [ "feed_control_modes", "position_params", "probe_semantics", + "spindle_orient", + "comment_logging", + "numbered_params", ]; for (const fixtureName of fixtureNames) {