Change 14950 by jhi@alpha on 2002/03/02 19:52:58

        The _POSIX_OPEN_MAX values are allowed *minimums*,
        higher is okay.

Affected files ...

.... //depot/perl/ext/POSIX/t/posix.t#7 edit

Differences ...

==== //depot/perl/ext/POSIX/t/posix.t#7 (text) ====
Index: perl/ext/POSIX/t/posix.t
--- perl/ext/POSIX/t/posix.t.~1~        Sat Mar  2 13:00:06 2002
+++ perl/ext/POSIX/t/posix.t    Sat Mar  2 13:00:06 2002
@@ -92,7 +92,7 @@
     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" );
 
 }
 
End of Patch.

Reply via email to