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