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 {...@@ -468,9 +468,8 @@ pub fn build(b: *std.Build) !void {
468 .skip_non_native = skip_non_native,468 .skip_non_native = skip_non_native,
469 .skip_cross_glibc = skip_cross_glibc,469 .skip_cross_glibc = skip_cross_glibc,
470 .skip_libc = skip_libc,470 .skip_libc = skip_libc,
471 // I observed a value of 3398275072 on my M1, and multiplied by 1.1 to471 // I observed a value of 3932766208 on the M1 CI.
472 // get this amount:472 .max_rss = 4080218931,
473 .max_rss = 3738102579,
474 }));473 }));
475474
476 try addWasiUpdateStep(b, version);475 try addWasiUpdateStep(b, version);