add removed expected stdout comparison in link test

This commit is contained in:
Jakub Konka 2022-09-18 09:28:46 +02:00
parent 0030e72d53
commit 54854e2ab8

View File

@ -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);
}