diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-03-06 23:00:32 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-03-15 10:48:14 -0700 |
| commit | 263aaf0e66a1e2cdf5cebdbfc5e2761dc5a67181 (patch) | |
| tree | be4a849eb280831c05078dcf3ef9d4f9fd59798c /test/src | |
| parent | 8b871ae27584c2433683ca064dbd3e7127d2a184 (diff) | |
| download | zig-263aaf0e66a1e2cdf5cebdbfc5e2761dc5a67181.tar.gz zig-263aaf0e66a1e2cdf5cebdbfc5e2761dc5a67181.zip | |
re-enable asm-and-link tests
These already looked pretty good. I deleted two unnecessary calls to
expectStdErrEqual.
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/CompareOutput.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/src/CompareOutput.zig b/test/src/CompareOutput.zig index 68cf942684..854bd11f9c 100644 --- a/test/src/CompareOutput.zig +++ b/test/src/CompareOutput.zig @@ -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); |
