test: remove package-wide import assumptions

This commit is contained in:
2026-08-14 03:45:02 +09:00
parent a841278333
commit 04d9560d51
74 changed files with 121 additions and 154 deletions

View File

@@ -77,7 +77,7 @@ fn row(label: str, nfiles: i32) void = {
};
let mainww: str = strings.concat(td, "/main.ww");
testenv.writefile(mainww,
"package main;\nimport bigmod;\nfn main() void = {};\n");
"package main;\nimport bigmod;\nfn main() i32 = { return bigmod.f000(); };\n");
let drvs: []str = ["ww", "ww_ww"];
let stems: []str = ["X_c", "X_w"];