按规划继续工作

结论:新增 namedparam_ini_semantics 夹具,将本地命名参数和 _ini[...] 查询纳入 upstream rs274 -i 基线,并接入 Node WASM 与浏览器 INI-aware 解释器 smoke;HAL 查询继续保留在 standalone adapter 边界。
This commit is contained in:
2026-06-08 12:18:02 +08:00
parent fb8fcee104
commit 657eecfcc3
9 changed files with 91 additions and 17 deletions

View File

@@ -20,6 +20,7 @@ FIXTURES=(
length_units
plane_selection
modal_incremental
namedparam_ini_semantics
numbered_params
nurbs_g5_semantics
nurbs_g6_semantics
@@ -827,6 +828,8 @@ for name in "${FIXTURES[@]}"; do
set +e
if [[ "$name" == "tool_table_setup" || "$name" == "tool_semantics" ]]; then
"$UPSTREAM_RS274" -g -i "$TOOL_TABLE_INI" -t "$TOOL_TABLE_BASELINE" "$gcode_file" > "$native_raw" 2>&1
elif [[ "$name" == "namedparam_ini_semantics" ]]; then
"$UPSTREAM_RS274" -g -i "$ROOT_DIR/tests/fixtures/ini/namedparams.ini" "$gcode_file" > "$native_raw" 2>&1
else
"$UPSTREAM_RS274" -g "$gcode_file" > "$native_raw" 2>&1
fi