authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-05-29 15:53:41-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-05-29 15:53:41-07:00
log82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f
tree1dadce834604d7fefc185c76deeab83960a5321d
parentb5fad3a40a86eb379903d6a803bdbe66dcaa5487

build.zig: bump maxrss upper bound for std lib tests


1 files changed, 2 insertions(+), 3 deletions(-)

build.zig+2-3
......@@ -468,9 +468,8 @@ pub fn build(b: *std.Build) !void {
468468 .skip_non_native = skip_non_native,
469469 .skip_cross_glibc = skip_cross_glibc,
470470 .skip_libc = skip_libc,
471 // I observed a value of 3398275072 on my M1, and multiplied by 1.1 to
472 // get this amount:
473 .max_rss = 3738102579,
471 // I observed a value of 3932766208 on the M1 CI.
472 .max_rss = 4080218931,
474473 }));
475474
476475 try addWasiUpdateStep(b, version);