summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_times_error.phpt
blob: d8da9caac623759a35826b3a044aa73fde0bf398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--TEST--
Test posix_times() function : error conditions
--SKIPIF--
<?php
	if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
?>
--FILE--
<?php
/* Prototype  : proto array posix_times(void)
 * Description: Get process times (POSIX.1, 4.5.2)
 * Source code: ext/posix/posix.c
 * Alias to functions:
 */

echo "*** Testing posix_times() : error conditions ***\n";

// One argument
echo "\n-- Testing posix_times() function with one argument --\n";
$extra_arg = 10;;
var_dump( posix_times($extra_arg) );

echo "Done";
?>
--EXPECTF--
*** Testing posix_times() : error conditions ***

-- Testing posix_times() function with one argument --

Warning: posix_times() expects exactly 0 parameters, 1 given in %s on line %d
NULL
Done