From f7d62009ff756a3c9cc79dbad88f51e44d1b4352 Mon Sep 17 00:00:00 2001 From: alexrp Date: Sun, 21 Sep 2025 08:46:37 +0200 Subject: [PATCH] std.posix: remove bogus assert that SIGRTMAX < NSIG --- lib/std/posix/test.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/posix/test.zig b/lib/std/posix/test.zig index 85651c13a5..cd322945d3 100644 --- a/lib/std/posix/test.zig +++ b/lib/std/posix/test.zig @@ -644,7 +644,6 @@ test "sigrtmin/max" { try std.testing.expect(posix.sigrtmin() >= 32); try std.testing.expect(posix.sigrtmin() >= posix.system.sigrtmin()); try std.testing.expect(posix.sigrtmin() < posix.system.sigrtmax()); - try std.testing.expect(posix.sigrtmax() < posix.NSIG); } test "sigset empty/full" {