motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit 0e673fdab22eafa5099b21ec66c50ba491811ce7 (tree)
parent d6d1fefae91b50cebd73501ff657709a945228f8
Author: alexrp <alex@alexrp.com>
Date:   Sun, 21 Sep 2025 08:46:37 +0200

std.posix: remove bogus assert that SIGRTMAX < NSIG

Diffstat:
Mlib/std/posix/test.zig | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lib/std/posix/test.zig b/lib/std/posix/test.zig @@ -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" {