std.posix: remove bogus assert that SIGRTMAX < NSIG

This commit is contained in:
alexrp 2025-09-21 08:46:37 +02:00 committed by Alex Rønne Petersen
parent d6d1fefae9
commit 0e673fdab2
No known key found for this signature in database

View File

@ -883,7 +883,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" {