commit 08cddaf11c7bac5fba2e696ed6b99d1f7b730543 (tree)
parent f303c3943f188b76c6d2566bd65429a8b60e8a59
Author: David Rubin <daviru007@icloud.com>
Date: Sun, 21 Jul 2024 03:16:32 -0700
test: update `make` functions to use `MakeOptions`
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/standalone/run_output_caching/build.zig b/test/standalone/run_output_caching/build.zig
@@ -87,7 +87,7 @@ const CheckOutputCaching = struct {
return check;
}
- fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
+ fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
const check: *CheckOutputCaching = @fieldParentPtr("step", step);
for (step.dependencies.items) |dependency| {
@@ -125,7 +125,7 @@ const CheckPathEquality = struct {
return check;
}
- fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
+ fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
const check: *CheckPathEquality = @fieldParentPtr("step", step);
std.debug.assert(check.output_paths.len != 0);
for (check.output_paths[0 .. check.output_paths.len - 1], check.output_paths[1..]) |a, b| {