Annotation of embedaddon/php/ext/posix/tests/posix_setgid_variation5.phpt, revision 1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>