| ... | @@ -609,7 +609,7 @@ pub const StackTracesContext = struct { | ... | @@ -609,7 +609,7 @@ pub const StackTracesContext = struct { |
| 609 | const allocator = context.b.allocator; | 609 | const allocator = context.b.allocator; |
| 610 | const ptr = allocator.create(RunAndCompareStep) catch unreachable; | 610 | const ptr = allocator.create(RunAndCompareStep) catch unreachable; |
| 611 | ptr.* = RunAndCompareStep{ | 611 | ptr.* = RunAndCompareStep{ |
| 612 | .step = build.Step.init("StackTraceCompareOutputStep", allocator, make), | 612 | .step = build.Step.init(.Custom, "StackTraceCompareOutputStep", allocator, make), |
| 613 | .context = context, | 613 | .context = context, |
| 614 | .exe = exe, | 614 | .exe = exe, |
| 615 | .name = name, | 615 | .name = name, |
| ... | @@ -808,7 +808,7 @@ pub const CompileErrorContext = struct { | ... | @@ -808,7 +808,7 @@ pub const CompileErrorContext = struct { |
| 808 | const allocator = context.b.allocator; | 808 | const allocator = context.b.allocator; |
| 809 | const ptr = allocator.create(CompileCmpOutputStep) catch unreachable; | 809 | const ptr = allocator.create(CompileCmpOutputStep) catch unreachable; |
| 810 | ptr.* = CompileCmpOutputStep{ | 810 | ptr.* = CompileCmpOutputStep{ |
| 811 | .step = build.Step.init("CompileCmpOutput", allocator, make), | 811 | .step = build.Step.init(.Custom, "CompileCmpOutput", allocator, make), |
| 812 | .context = context, | 812 | .context = context, |
| 813 | .name = name, | 813 | .name = name, |
| 814 | .test_index = context.test_index, | 814 | .test_index = context.test_index, |
| ... | @@ -1156,7 +1156,7 @@ pub const GenHContext = struct { | ... | @@ -1156,7 +1156,7 @@ pub const GenHContext = struct { |
| 1156 | const allocator = context.b.allocator; | 1156 | const allocator = context.b.allocator; |
| 1157 | const ptr = allocator.create(GenHCmpOutputStep) catch unreachable; | 1157 | const ptr = allocator.create(GenHCmpOutputStep) catch unreachable; |
| 1158 | ptr.* = GenHCmpOutputStep{ | 1158 | ptr.* = GenHCmpOutputStep{ |
| 1159 | .step = build.Step.init("ParseCCmpOutput", allocator, make), | 1159 | .step = build.Step.init(.Custom, "ParseCCmpOutput", allocator, make), |
| 1160 | .context = context, | 1160 | .context = context, |
| 1161 | .obj = obj, | 1161 | .obj = obj, |
| 1162 | .name = name, | 1162 | .name = name, |