1--TEST-- 2Test function posix_setuid() by substituting argument 1 with boolean values. 3--EXTENSIONS-- 4posix 5--SKIPIF-- 6<?php 7 if(posix_geteuid() == 0) print "skip - Cannot run test as root."; 8?> 9--CREDITS-- 10Marco Fabbri mrfabbri@gmail.com 11Francesco Fullone ff@ideato.it 12#PHPTestFest Cesena Italia on 2009-06-20 13--FILE-- 14<?php 15 16 17echo "*** Test substituting argument 1 with boolean values ***\n"; 18 19 20 21$variation_array = array( 22 'lowercase true' => true, 23 'lowercase false' =>false, 24 'uppercase TRUE' =>TRUE, 25 'uppercase FALSE' =>FALSE, 26 ); 27 28 29foreach ( $variation_array as $var ) { 30 var_dump(posix_setuid( $var ) ); 31} 32?> 33--EXPECT-- 34*** Test substituting argument 1 with boolean values *** 35bool(false) 36bool(false) 37bool(false) 38bool(false) 39