Annotation of embedaddon/php/ext/posix/tests/posix_getrlimit.phpt, revision 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:
! 11: var_dump(posix_getrlimit());
! 12:
! 13: ?>
! 14: --EXPECTF--
! 15: array(%d) {
! 16: %a
! 17: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>