re-enable asm-and-link tests

These already looked pretty good. I deleted two unnecessary calls to
expectStdErrEqual.
This commit is contained in:
Andrew Kelley
2023-03-06 23:00:32 -07:00
parent 8b871ae275
commit 263aaf0e66
2 changed files with 1 additions and 3 deletions

View File

@@ -104,7 +104,6 @@ pub fn addCase(self: *CompareOutput, case: TestCase) void {
const run = exe.run();
run.setName(annotated_case_name);
run.addArgs(case.cli_args);
run.expectStdErrEqual("");
run.expectStdOutEqual(case.expected_output);
self.step.dependOn(&run.step);
@@ -132,7 +131,6 @@ pub fn addCase(self: *CompareOutput, case: TestCase) void {
const run = exe.run();
run.setName(annotated_case_name);
run.addArgs(case.cli_args);
run.expectStdErrEqual("");
run.expectStdOutEqual(case.expected_output);
self.step.dependOn(&run.step);