zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f7d62009ff756a3c9cc79dbad88f51e44d1b4352 (tree)
parent 0700ec35bda705fccb61cb3f28734ce11166fda5
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 @@ -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" {