commit a901ea23b0a53f6feba0111886156262fcff469d (tree)
parent 15ca46d1e70f24a1b37ac332630f6949552e4bda
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 16 Jan 2026 22:39:23 -0800
update doctest API usage
Diffstat:
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git a/tools/doctest.zig b/tools/doctest.zig
@@ -201,7 +201,6 @@ fn printOutput(
.argv = build_args.items,
.cwd = tmp_dir_path,
.environ_map = environ_map,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {
@@ -257,7 +256,6 @@ fn printOutput(
.argv = run_args,
.environ_map = environ_map,
.cwd = tmp_dir_path,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {
@@ -376,7 +374,6 @@ fn printOutput(
.argv = test_args.items,
.environ_map = environ_map,
.cwd = tmp_dir_path,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {
@@ -432,7 +429,6 @@ fn printOutput(
.argv = test_args.items,
.environ_map = environ_map,
.cwd = tmp_dir_path,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {
@@ -508,7 +504,6 @@ fn printOutput(
.argv = build_args.items,
.environ_map = environ_map,
.cwd = tmp_dir_path,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {
@@ -1132,7 +1127,6 @@ fn run(
.argv = args,
.environ_map = environ_map,
.cwd = cwd,
- .max_output_bytes = max_doc_file_size,
});
switch (result.term) {
.exited => |exit_code| {