Commit f7d62009ff

alexrp <alex@alexrp.com>
2025-09-21 08:46:37
std.posix: remove bogus assert that SIGRTMAX < NSIG
1 parent 0700ec3
Changed files (1)
lib
std
posix
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" {