authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-21 22:44:11-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-21 22:51:17-07:00
log46a06074eb2939d34e0850f4f56fc6e620771396
tree47c845370cc5db4ebda4055ff0f5ecb7af97544b
parentf550c29c4e76ccfbdbc8ec2159cf90474530a24c

tests: remove superfluous newlines from logs


1 files changed, 2 insertions(+), 2 deletions(-)

test/tests.zig+2-2
......@@ -1021,7 +1021,7 @@ pub const StandaloneContext = struct {
10211021 defer zig_args.resize(zig_args_base_len) catch unreachable;
10221022
10231023 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) });
10251025 log_step.step.dependOn(&run_cmd.step);
10261026
10271027 self.step.dependOn(&log_step.step);
......@@ -1046,7 +1046,7 @@ pub const StandaloneContext = struct {
10461046 exe.linkSystemLibrary("c");
10471047 }
10481048
1049 const log_step = b.addLog("PASS {s}\n", .{annotated_case_name});
1049 const log_step = b.addLog("PASS {s}", .{annotated_case_name});
10501050 log_step.step.dependOn(&exe.step);
10511051
10521052 self.step.dependOn(&log_step.step);