aboutsummaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-02-27 14:11:29 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-02-27 16:10:48 -0700
commitd399f8a489dd2ae62fae9b805778bfdc697a969b (patch)
tree60df6836102786a1e665dfc92d815a27d6f8c352 /test/src
parentb5b634e4e8a2a1fe32fba50ccd175257b4213936 (diff)
parentf6c934677315665c140151b8dd28a56f948205e2 (diff)
downloadzig-d399f8a489dd2ae62fae9b805778bfdc697a969b.tar.gz
zig-d399f8a489dd2ae62fae9b805778bfdc697a969b.zip
Merge remote-tracking branch 'origin/master' into llvm16
Diffstat (limited to 'test/src')
-rw-r--r--test/src/compare_output.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/compare_output.zig b/test/src/compare_output.zig
index edd48321c9..3bda3bdacd 100644
--- a/test/src/compare_output.zig
+++ b/test/src/compare_output.zig
@@ -168,7 +168,7 @@ pub const CompareOutputContext = struct {
run.addArgs(case.cli_args);
run.stderr_action = .ignore;
run.stdout_action = .ignore;
- run.expected_exit_code = 126;
+ run.expected_term = .{ .Exited = 126 };
self.step.dependOn(&run.step);
},