mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-30 04:29:01 +01:00
13 lines
228 B
Plaintext
13 lines
228 B
Plaintext
|
--TEST--
|
||
|
Check for uv_resident_set_memory
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$resident_mem = uv_resident_set_memory();
|
||
|
|
||
|
if ($resident_mem > 0) {
|
||
|
echo "OK";
|
||
|
} else {
|
||
|
echo "FAILED: {resident_mem} should be greater than 0 (maybe)";
|
||
|
}
|
||
|
--EXPECT--
|
||
|
OK
|