summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getppid_error.phpt
blob: 366c1ed8dccd85f6fdf17e23193c0d23473d5f90 (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_getppid() function : error conditions 
--SKIPIF--
<?php 
	if(!extension_loaded("posix")) print "skip - POSIX extension not loaded"; 
?>
--FILE--
<?php
/* Prototype  : proto int posix_getppid(void)
 * Description: Get the parent process id (POSIX.1, 4.1.1) 
 * Source code: ext/posix/posix.c
 * Alias to functions: 
 */

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

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

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

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

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