mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
13 lines
228 B
PHP
13 lines
228 B
PHP
--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 |