aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/link/macho/empty/build.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/link/macho/empty/build.zig b/test/link/macho/empty/build.zig
index 0af10c85ac..ab016fd4bd 100644
--- 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);
}