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