mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00

* See getrusage.c/h for implementation details and limitations * Tests passes and have had their SKIPIF updated * psapi.lib is now linked to by default
30 lines
794 B
PHP
30 lines
794 B
PHP
--TEST--
|
|
Test getrusage() function: basic test
|
|
--SKIPIF--
|
|
<?php if (!function_exists("getrusage")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : array getrusage ([ int $who ] )
|
|
* Description: Gets the current resource usages
|
|
* Source code: ext/standard/microtime.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
echo "Simple testcase for getrusage() function\n";
|
|
|
|
$dat = getrusage();
|
|
|
|
if (!is_array($dat)) {
|
|
echo "TEST FAILED : getrusage should return an array\n";
|
|
}
|
|
|
|
// echo the fields which are common to all platforms
|
|
echo "User time used (seconds) " . $dat["ru_utime.tv_sec"] . "\n";
|
|
echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Simple testcase for getrusage() function
|
|
User time used (seconds) %d
|
|
User time used (microseconds) %d
|
|
===DONE===
|