From 6493a3b83108870f20f9a478ea05d2ef8e756394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sat, 5 Sep 2026 16:14:44 +0200 Subject: [PATCH] build: bump test-libc-nsz max_rss to 4_300_000_000 error: memory usage peaked at 4.16GB (4156260352 bytes), exceeding the declared upper bound of 3.50GB (3500000000 bytes) --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index a0e4bd4b0d414829e185c60c8895211af0709a5c..7e0cdd4f26e27275035d34009df012ba48cb0a13 100644 --- a/build.zig +++ b/build.zig @@ -798,7 +798,7 @@ pub fn build(b: *std.Build) !void { .test_filters = test_filters, .test_target_filters = test_target_filters, .skip_wasm = skip_wasm, - .max_rss = 3_500_000_000, + .max_rss = 4_300_000_000, })) |test_libc_nsz_step| test_step.dependOn(test_libc_nsz_step); } -- 2.54.0