diff options
Diffstat (limited to 'ext/POSIX/t/posix.t')
-rw-r--r-- | ext/POSIX/t/posix.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/t/posix.t b/ext/POSIX/t/posix.t index d73dae0745..a4d3792ddd 100644 --- a/ext/POSIX/t/posix.t +++ b/ext/POSIX/t/posix.t @@ -92,7 +92,7 @@ SKIP: { skip("_POSIX_OPEN_MAX is inaccurate on MPE", 1) if $Is_MPE; skip("_POSIX_OPEN_MAX undefined ($fds[1])", 1) unless &_POSIX_OPEN_MAX; - ok( &_POSIX_OPEN_MAX == 16 || &_POSIX_OPEN_MAX == 20, "The two allowed values according to susv2 and susv3" ); + ok( &_POSIX_OPEN_MAX >= 16, "The minimum allowed values according to susv2" ); } |