Annotation of embedaddon/php/ext/posix/tests/posix_getrlimit_basic.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: posix_getrlimit(): Basic tests
                      3: --SKIPIF--
                      4: <?php
                      5: if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
                      6: if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
                      7: ?>
                      8: --FILE--
                      9: <?php
                     10: echo "Basic test of POSIX posix_getrlimit function\n"; 
                     11: var_dump(posix_getrlimit());
                     12: 
                     13: ?>
                     14: ===DONE====
                     15: --EXPECTF--
                     16: Basic test of POSIX posix_getrlimit function
                     17: array(%d) {
                     18: %a
                     19: }
                     20: ===DONE====

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>