hv1 verify: add direct route (env JSON) and clean inline path; fix v1 phi incoming order; make test_runner use hv1 direct; add phase2037 phi canaries; load modules.workspace exports for alias; update docs (phase-20.38, source extensions) and CURRENT_TASK

This commit is contained in:
nyash-codex
2025-11-04 16:33:04 +09:00
parent 5a1bb549a7
commit 30aa39f50b
270 changed files with 4320 additions and 758 deletions

View File

@ -167,9 +167,7 @@ fn run_harness_in(harness: &Path, input: &Path, out: &Path) -> Result<()> {
.arg("--out")
.arg(out);
propagate_opt_level(&mut cmd);
let status = cmd
.status()
.context("failed to execute python harness")?;
let status = cmd.status().context("failed to execute python harness")?;
if !status.success() {
bail!("harness exited with status: {:?}", status.code());
}