aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rischmann <vincent@rischmann.fr>2021-10-10 15:10:02 +0200
committerVincent Rischmann <vincent@rischmann.fr>2021-11-16 20:36:50 +0100
commitd7c770fb7f071543c21d91dc2d01f01df81f0cf6 (patch)
tree320c9612fdd250a11d1cef536aec02e63adf04f8
parent353c59e6d5f32203ade301c609e20c1fa954f73d (diff)
downloadzig-d7c770fb7f071543c21d91dc2d01f01df81f0cf6.tar.gz
zig-d7c770fb7f071543c21d91dc2d01f01df81f0cf6.zip
os: fix getrlimit/setrlimit test for MIPS
This test can fail due to a fix in musl for 32 bit MIPS, where musl changes limits greater than -1UL/2 to RLIM_INFINITY. See http://git.musl-libc.org/cgit/musl/commit/src/misc/getrlimit.c?id=8258014fd1e34e942a549c88c7e022a00445c352 Depending on the system where the test is run getrlimit can return RLIM_INFINITY for example if RLIMIT_MEMLOCK is bigger than ~2GiB. If that happens, the setrlimit call will fail with PermissionDenied.
-rw-r--r--lib/std/os/test.zig14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig
index d3c8d13bd1..bddef15608 100644
--- a/lib/std/os/test.zig
+++ b/lib/std/os/test.zig
@@ -693,7 +693,19 @@ test "getrlimit and setrlimit" {
inline for (std.meta.fields(os.rlimit_resource)) |field| {
const resource = @intToEnum(os.rlimit_resource, field.value);
const limit = try os.getrlimit(resource);
- try os.setrlimit(resource, limit);
+
+ // On 32 bit MIPS musl includes a fix which changes limits greater than -1UL/2 to RLIM_INFINITY.
+ // See http://git.musl-libc.org/cgit/musl/commit/src/misc/getrlimit.c?id=8258014fd1e34e942a549c88c7e022a00445c352
+ //
+ // This happens for example if RLIMIT_MEMLOCK is bigger than ~2GiB.
+ // In that case the following the limit would be RLIM_INFINITY and the following setrlimit fails with EPERM.
+ if (comptime builtin.cpu.arch.isMIPS() and builtin.link_libc) {
+ if (limit.cur != os.linux.RLIM.INFINITY) {
+ try os.setrlimit(resource, limit);
+ }
+ } else {
+ try os.setrlimit(resource, limit);
+ }
}
}