mirror of
https://github.com/php/php-src.git
synced 2025-01-22 03:34:19 +08:00
- Removed safe-mode tests
This commit is contained in:
parent
05e25f0099
commit
a20d96e850
@ -1,28 +0,0 @@
|
||||
--TEST--
|
||||
putenv() - usage in safe mode with safe_mode_allowed_env_vars set
|
||||
--CREDITS--
|
||||
Brian DeShong <brian@deshong.net>
|
||||
--INI--
|
||||
safe_mode=1
|
||||
safe_mode_allowed_env_vars=TESTING_
|
||||
--SKIPIF--
|
||||
<?php if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available'); } ?>
|
||||
--FILE--
|
||||
<?php
|
||||
putenv('FOO=bar');
|
||||
putenv('BAZ=bop');
|
||||
$set = putenv('TESTING_FOO=bar');
|
||||
print ($set ? 'it worked' : 'boo') . "\n";
|
||||
$set = putenv('TESTING_BAR=baz');
|
||||
print ($set ? 'it worked' : 'boo') . "\n";
|
||||
?>
|
||||
==DONE==
|
||||
--EXPECTF--
|
||||
Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown on line 0
|
||||
|
||||
Warning: putenv(): Safe Mode warning: Cannot set environment variable 'FOO' - it's not in the allowed list in %s on line %d
|
||||
|
||||
Warning: putenv(): Safe Mode warning: Cannot set environment variable 'BAZ' - it's not in the allowed list in %s on line %d
|
||||
it worked
|
||||
it worked
|
||||
==DONE==
|
@ -1,22 +0,0 @@
|
||||
--TEST--
|
||||
putenv() - usage in safe mode with safe_mode_protected_env_vars set
|
||||
--CREDITS--
|
||||
Brian DeShong <brian@deshong.net>
|
||||
--INI--
|
||||
safe_mode=1
|
||||
safe_mode_protected_env_vars=FOO,BAZ
|
||||
--SKIPIF--
|
||||
<?php if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available'); } ?>
|
||||
--FILE--
|
||||
<?php
|
||||
putenv('FOO=bar');
|
||||
putenv('BAZ=bop');
|
||||
?>
|
||||
==DONE==
|
||||
--EXPECTF--
|
||||
Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown on line 0
|
||||
|
||||
Warning: putenv(): Safe Mode warning: Cannot override protected environment variable 'FOO' in %s on line %d
|
||||
|
||||
Warning: putenv(): Safe Mode warning: Cannot override protected environment variable 'BAZ' in %s on line %d
|
||||
==DONE==
|
Loading…
Reference in New Issue
Block a user