1--TEST--
2Test function posix_setgid() by calling it with its expected arguments
3--SKIPIF--
4<?php
5        if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
6?>
7--CREDITS--
8Marco Fabbri mrfabbri@gmail.com
9Francesco Fullone ff@ideato.it
10#PHPTestFest Cesena Italia on 2009-06-20
11--FILE--
12<?php
13
14
15echo "*** Test by calling method or function with its expected arguments ***\n";
16
17$gid = posix_getgid();
18var_dump(posix_setgid( $gid ) );
19
20
21?>
22===DONE===
23--EXPECT--
24*** Test by calling method or function with its expected arguments ***
25bool(true)
26===DONE===
27
28