aboutsummaryrefslogtreecommitdiff
path: root/test/link/bss/main.zig
AgeCommit message (Collapse)Author
4 daysupdate test-link to new std.Io APIAndrew Kelley
4 daystest: std.fs.File -> std.Io.FileAndrew Kelley
2025-07-07update standalone and incremental tests to new APIAndrew Kelley
2025-06-06tests: avoid loading 16 MiB onto the stackmlugg
Currently, Zig semantically loads an array as a temporary when indexing it. This means it cannot be guaranteed that only the requested element is loaded; in particular, our self-hosted backends do not elide the load of the full array, so this test case was crashing on self-hosted.
2023-03-15new linker test harnessAndrew Kelley
It's simpler and it takes advantage of `std.Build.addAnonymousDependency`, which has a number of benefits, including concurrenc and preventing extra zig-cache and zig-out directories being created. 4 tests are ported over as an example.
2022-06-20test: introduce link(er) tests - builds on standalone testsJakub Konka