1--TEST--
2Test posix_getpgrp() function : error conditions
3--SKIPIF--
4<?php
5	if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
6?>
7--FILE--
8<?php
9/* Prototype  : proto int posix_getpgrp(void)
10 * Description: Get current process group id (POSIX.1, 4.3.1)
11 * Source code: ext/posix/posix.c
12 * Alias to functions:
13 */
14
15echo "*** Testing posix_getpgrp() : error conditions ***\n";
16
17// One argument
18echo "\n-- Testing posix_getpgrp() function with one argument --\n";
19$extra_arg = 10;
20var_dump( posix_getpgrp($extra_arg) );
21
22echo "Done";
23?>
24--EXPECTF--
25*** Testing posix_getpgrp() : error conditions ***
26
27-- Testing posix_getpgrp() function with one argument --
28
29Warning: posix_getpgrp() expects exactly 0 parameters, 1 given in %s on line %d
30NULL
31Done
32