扩展解释器WASM参数夹具

结论:解释器核心WASM验证新增主轴定向、注释日志和编号参数夹具,继续直接复用LinuxCNC解释器源码与现有canonical期望。
This commit is contained in:
2026-06-08 05:14:20 +08:00
parent 123c335e8f
commit c32379171d
2 changed files with 8 additions and 4 deletions

View File

@@ -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 INI parser smoke harness and an initial interpreter-core canonical event smoke
for `minimal_linear`, `arc_semantics`, `length_units`, `modal_incremental`, for `minimal_linear`, `arc_semantics`, `length_units`, `modal_incremental`,
`plane_selection`, `coordinate_offsets`, `g53_machine_coordinates`, `plane_selection`, `coordinate_offsets`, `g53_machine_coordinates`,
`feed_control_modes`, `position_params`, and `probe_semantics`. OPFS validation `feed_control_modes`, `position_params`, `probe_semantics`, `spindle_orient`,
is limited to the JavaScript host-boundary adapter plus the INI browser smoke `comment_logging`, and `numbered_params`. OPFS validation is limited to the
harness. Full browser coverage, full SDK coverage, and full machine-session JavaScript host-boundary adapter plus the INI browser smoke harness. Full
validation remain future work. browser coverage, full SDK coverage, and full machine-session validation remain
future work.
The current fixture expectations validate standalone behavior against both the The current fixture expectations validate standalone behavior against both the
vendored LinuxCNC source path and an upstream `rs274` side-by-side baseline for vendored LinuxCNC source path and an upstream `rs274` side-by-side baseline for

View File

@@ -51,6 +51,9 @@ const fixtureNames = [
"feed_control_modes", "feed_control_modes",
"position_params", "position_params",
"probe_semantics", "probe_semantics",
"spindle_orient",
"comment_logging",
"numbered_params",
]; ];
for (const fixtureName of fixtureNames) { for (const fixtureName of fixtureNames) {