mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
ext/posix: Remove ZPP tests
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
--TEST--
|
||||
Test function posix_seteuid() by substituting argument 1 with boolean values.
|
||||
--EXTENSIONS--
|
||||
posix
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if(posix_geteuid() == 0) print "skip - Cannot run test as root.";
|
||||
?>
|
||||
--CREDITS--
|
||||
Marco Fabbri mrfabbri@gmail.com
|
||||
Francesco Fullone ff@ideato.it
|
||||
#PHPTestFest Cesena Italia on 2009-06-20
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
||||
echo "*** Test substituting argument 1 with boolean values ***\n";
|
||||
|
||||
|
||||
|
||||
$variation_array = array(
|
||||
'lowercase true' => true,
|
||||
'lowercase false' =>false,
|
||||
'uppercase TRUE' =>TRUE,
|
||||
'uppercase FALSE' =>FALSE,
|
||||
);
|
||||
|
||||
|
||||
foreach ( $variation_array as $var ) {
|
||||
var_dump(posix_seteuid( $var ) );
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
*** Test substituting argument 1 with boolean values ***
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
@@ -1,38 +0,0 @@
|
||||
--TEST--
|
||||
Test function posix_setgid() by substituting argument 1 with boolean values.
|
||||
--EXTENSIONS--
|
||||
posix
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if(posix_geteuid() == 0) print "skip - Cannot run test as root.";
|
||||
?>
|
||||
--CREDITS--
|
||||
Marco Fabbri mrfabbri@gmail.com
|
||||
Francesco Fullone ff@ideato.it
|
||||
#PHPTestFest Cesena Italia on 2009-06-20
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
||||
echo "*** Test substituting argument 1 with boolean values ***\n";
|
||||
|
||||
|
||||
|
||||
$variation_array = array(
|
||||
'lowercase true' => true,
|
||||
'lowercase false' =>false,
|
||||
'uppercase TRUE' =>TRUE,
|
||||
'uppercase FALSE' =>FALSE,
|
||||
);
|
||||
|
||||
|
||||
foreach ( $variation_array as $var ) {
|
||||
var_dump(posix_setgid( $var ) );
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
*** Test substituting argument 1 with boolean values ***
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
@@ -1,38 +0,0 @@
|
||||
--TEST--
|
||||
Test function posix_setuid() by substituting argument 1 with boolean values.
|
||||
--EXTENSIONS--
|
||||
posix
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if(posix_geteuid() == 0) print "skip - Cannot run test as root.";
|
||||
?>
|
||||
--CREDITS--
|
||||
Marco Fabbri mrfabbri@gmail.com
|
||||
Francesco Fullone ff@ideato.it
|
||||
#PHPTestFest Cesena Italia on 2009-06-20
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
||||
echo "*** Test substituting argument 1 with boolean values ***\n";
|
||||
|
||||
|
||||
|
||||
$variation_array = array(
|
||||
'lowercase true' => true,
|
||||
'lowercase false' =>false,
|
||||
'uppercase TRUE' =>TRUE,
|
||||
'uppercase FALSE' =>FALSE,
|
||||
);
|
||||
|
||||
|
||||
foreach ( $variation_array as $var ) {
|
||||
var_dump(posix_setuid( $var ) );
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
*** Test substituting argument 1 with boolean values ***
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
bool(false)
|
||||
Reference in New Issue
Block a user