wwtest: native package-test coordinator

Single-directory package-test planner: discovers *.ww, groups white-box
and external <pkg>_test sources, composes the combined test package,
builds it through the sibling ww driver, and runs it with the runtime's
-package/-list/-timeout-ms contract. test/package holds its E2E corpus
and the manual runtime fixture set.
This commit is contained in:
2026-08-07 23:01:03 +09:00
parent ff042df937
commit 7a2c21acfb
34 changed files with 1598 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package root;
import dep;
fn answer() int = { return dep.value() + dep.bonus(); };

View File

@@ -0,0 +1,5 @@
package root;
@test fn imported_production_only() void = {
assert(answer() == 42);
};