commit 54854e2ab87e667751f2eae86f41b9d41bcfda9d (tree)
parent 0030e72d53cc914f28f962c6c8211f9c7a5bac35
Author: Jakub Konka <kubkon@jakubkonka.com>
Date: Sun, 18 Sep 2022 09:28:46 +0200
add removed expected stdout comparison in link test
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/test/link/macho/empty/build.zig b/test/link/macho/empty/build.zig
@@ -16,5 +16,6 @@ pub fn build(b: *Builder) void {
exe.linkLibC();
const run_cmd = std.build.EmulatableRunStep.create(b, "run", exe);
+ run_cmd.expectStdOutEqual("Hello!\n");
test_step.dependOn(&run_cmd.step);
}