summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getrlimit_basic.phpt
blob: 7fdd0e7e4b31337636f7529158815c3edf1cfe0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
posix_getrlimit(): Basic tests
--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
?>
--FILE--
<?php
echo "Basic test of POSIX posix_getrlimit function\n"; 
var_dump(posix_getrlimit());

?>
===DONE====
--EXPECTF--
Basic test of POSIX posix_getrlimit function
array(%d) {
%a
}
===DONE====