| ... | @@ -1021,7 +1021,7 @@ pub const StandaloneContext = struct { | ... | @@ -1021,7 +1021,7 @@ pub const StandaloneContext = struct { |
| 1021 | defer zig_args.resize(zig_args_base_len) catch unreachable; | 1021 | defer zig_args.resize(zig_args_base_len) catch unreachable; |
| 1022 | | 1022 | |
| 1023 | const run_cmd = b.addSystemCommand(zig_args.items); | 1023 | const run_cmd = b.addSystemCommand(zig_args.items); |
| 1024 | const log_step = b.addLog("PASS {s} ({s})\n", .{ annotated_case_name, @tagName(mode) }); | 1024 | const log_step = b.addLog("PASS {s} ({s})", .{ annotated_case_name, @tagName(mode) }); |
| 1025 | log_step.step.dependOn(&run_cmd.step); | 1025 | log_step.step.dependOn(&run_cmd.step); |
| 1026 | | 1026 | |
| 1027 | self.step.dependOn(&log_step.step); | 1027 | self.step.dependOn(&log_step.step); |
| ... | @@ -1046,7 +1046,7 @@ pub const StandaloneContext = struct { | ... | @@ -1046,7 +1046,7 @@ pub const StandaloneContext = struct { |
| 1046 | exe.linkSystemLibrary("c"); | 1046 | exe.linkSystemLibrary("c"); |
| 1047 | } | 1047 | } |
| 1048 | | 1048 | |
| 1049 | const log_step = b.addLog("PASS {s}\n", .{annotated_case_name}); | 1049 | const log_step = b.addLog("PASS {s}", .{annotated_case_name}); |
| 1050 | log_step.step.dependOn(&exe.step); | 1050 | log_step.step.dependOn(&exe.step); |
| 1051 | | 1051 | |
| 1052 | self.step.dependOn(&log_step.step); | 1052 | self.step.dependOn(&log_step.step); |