summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getpgid_error.phpt
blob: d6f0512ab40def9eda45e528afc2b42afb5ecb74 (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
--TEST--
Test posix_getpgid() function : error conditions
--SKIPIF--
<?php
if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) {
	 print "skip - POSIX extension not loaded or posix_getpgid() does not exist";
}
?>
--FILE--
<?php
echo "*** Testing posix_getpgid() : error conditions ***\n";

echo "\n-- Testing posix_getpgid() with negative pid  --\n";
$pid = -99;
var_dump( posix_getpgid($pid) );

echo "Done";
?>
--EXPECT--
*** Testing posix_getpgid() : error conditions ***

-- Testing posix_getpgid() with negative pid  --
bool(false)
Done