authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-09-18 09:28:46+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-09-18 09:28:46+02:00
log54854e2ab87e667751f2eae86f41b9d41bcfda9d
tree4de326cd31ffbb08485febdf0313260743fd3c42
parent0030e72d53cc914f28f962c6c8211f9c7a5bac35

add removed expected stdout comparison in link test


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

test/link/macho/empty/build.zig+1
...@@ -16,5 +16,6 @@ pub fn build(b: *Builder) void {...@@ -16,5 +16,6 @@ pub fn build(b: *Builder) void {
16 exe.linkLibC();16 exe.linkLibC();
1717
18 const run_cmd = std.build.EmulatableRunStep.create(b, "run", exe);18 const run_cmd = std.build.EmulatableRunStep.create(b, "run", exe);
19 run_cmd.expectStdOutEqual("Hello!\n");
19 test_step.dependOn(&run_cmd.step);20 test_step.dependOn(&run_cmd.step);
20}21}