Compilation: remove last instance of deprecatedReader

This also makes initStreaming preemptively disable file size checking.
This commit is contained in:
Andrew Kelley
2025-08-14 20:32:47 -07:00
parent 0096c0806c
commit ef14c73245
8 changed files with 35 additions and 34 deletions

View File

@@ -27,10 +27,7 @@ pub fn build(b: *std.Build) void {
b.default_step = test_step;
const test_run = b.addRunArtifact(test_exe);
if (!is_windows) {
// https://github.com/ziglang/zig/issues/24867
test_run.addCheck(.{ .expect_stderr_match = "All 3 tests passed." });
}
test_run.addCheck(.{ .expect_stderr_match = "All 3 tests passed." });
test_step.dependOn(&test_run.step);
}