commit 20b35332fec73956c97087959dbc0fa2f78e5553 (tree)
parent 7d5bce56e16cd7661b79046d573427972bbb6cf5
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 9 Mar 2023 23:59:11 -0700
build.zig: bump maxrss upper bound for std lib tests
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/build.zig b/build.zig
@@ -471,7 +471,9 @@ pub fn build(b: *std.Build) !void {
.skip_libc = skip_libc,
.skip_stage1 = skip_stage1,
.skip_stage2 = true, // TODO get all these passing
- .max_rss = 3 * 1024 * 1024 * 1024,
+ // I observed a value of 3398275072 on my M1, and multiplied by 1.1 to
+ // get this amount:
+ .max_rss = 3738102579,
}));
try addWasiUpdateStep(b, version);