aboutsummaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-03-06 23:00:32 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-03-15 10:48:14 -0700
commit263aaf0e66a1e2cdf5cebdbfc5e2761dc5a67181 (patch)
treebe4a849eb280831c05078dcf3ef9d4f9fd59798c /test/src
parent8b871ae27584c2433683ca064dbd3e7127d2a184 (diff)
downloadzig-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.zig2
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);