--TEST-- Test function posix_setgid() by substituting argument 1 with int values. --SKIPIF-- --CREDITS-- Marco Fabbri mrfabbri@gmail.com Francesco Fullone ff@ideato.it #PHPTestFest Cesena Italia on 2009-06-20 --FILE-- 0, 'long 1' => 1, 'int -12345' => -2345, ); foreach ( $variation_array as $var ) { var_dump(posix_setgid( $var ) ); } ?> --EXPECT-- *** Test substituting argument 1 with int values *** bool(false) bool(false) bool(false)