From 02599bccb5c0b75e6dcdf950fa2dc1ece40c19f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 3 Feb 2026 13:31:24 +0100 Subject: [PATCH] build: bump test-libc max_rss to 3_500_000_000 error: memory usage peaked at 3.11GB (3105054720 bytes), exceeding the declared upper bound of 2.90GB (2900000000 bytes) --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 84cbba38bd..8006715735 100644 --- a/build.zig +++ b/build.zig @@ -681,7 +681,7 @@ pub fn build(b: *std.Build) !void { .test_filters = test_filters, .test_target_filters = test_target_filters, .skip_wasm = skip_wasm, - .max_rss = 2_496_066_355, + .max_rss = 3_500_000_000, })) |test_libc_step| test_step.dependOn(test_libc_step); }