aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/run_output_caching
AgeCommit message (Collapse)Author
5 daystest-standalone: fix most compilation errorsAndrew Kelley
5 daysstd: consolidate all instances of std.Io.Threaded into a singletonAndrew Kelley
It's better to avoid references to this global variable, but, in the cases where it's needed, such as in std.debug.print and collecting stack traces, better to share the same instance.
5 daystests: close() -> close(io)Andrew Kelley
2025-06-13tests: do not require absolute paths from the build systemmlugg
File arguments added to `std.Build.Step.Run` with e.g. `addFileArg` are not necessarily passed as absolute paths. It used to be the case that they were as a consequence of an unnecessary path conversion done by the frontend, but this no longer happens, at least not always, so these tests were sometimes failing when run locally. Therefore, the standalone tests must handle cwd-relative CLI paths correctly.
2024-12-18test-standalone: migrate from deprecated std.Build APIsmlugg
2024-07-21test: update `make` functions to use `MakeOptions`David Rubin
2024-07-21test: check output file caching of run steps with side-effectsTechatrix