1--TEST--
2Test function proc_nice() by calling it more than or less than its expected arguments
3--SKIPIF--
4<?php
5if(!function_exists('proc_nice')) die("skip. proc_nice not available ");
6?>
7--FILE--
8<?php
9
10
11echo "*** Test by calling method or function with incorrect numbers of arguments ***\n"
12
13$priority =
14
15
16$extra_arg =
17
18var_dump(proc_nice( $priority, $extra_arg ) );
19
20var_dump(proc_nice(  ) );
21
22
23?>
24--EXPECTF--
25Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in %s on line %d
26