Commit 20b35332fe

Andrew Kelley <andrew@ziglang.org>
2023-03-10 07:59:11
build.zig: bump maxrss upper bound for std lib tests
1 parent 7d5bce5
Changed files (1)
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);