diff options
author | Felipe Pena <felipe@php.net> | 2010-11-02 18:06:39 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-11-02 18:06:39 +0000 |
commit | 4667771a5f014cf92bf467b7cdce558d68b3ebe5 (patch) | |
tree | 26fb1572b13016cc8248a6c50e09b73d3c34ad34 /ext/posix | |
parent | 2bbcc005c751b0c337e48df2733a0651083b6455 (diff) | |
download | php-git-4667771a5f014cf92bf467b7cdce558d68b3ebe5.tar.gz |
- Fixed no bailout address error and posix tests
Diffstat (limited to 'ext/posix')
-rw-r--r-- | ext/posix/tests/posix_access.phpt | 2 | ||||
-rw-r--r-- | ext/posix/tests/posix_access_error_modes.phpt | 2 | ||||
-rw-r--r-- | ext/posix/tests/posix_access_error_wrongparams.phpt | 2 | ||||
-rw-r--r-- | ext/posix/tests/posix_access_safemode.phpt | 2 | ||||
-rw-r--r-- | ext/posix/tests/posix_mkfifo_safemode.phpt | 2 |
5 files changed, 0 insertions, 10 deletions
diff --git a/ext/posix/tests/posix_access.phpt b/ext/posix/tests/posix_access.phpt index 86093e2651..47b5e15f0b 100644 --- a/ext/posix/tests/posix_access.phpt +++ b/ext/posix/tests/posix_access.phpt @@ -17,8 +17,6 @@ if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available.'); } ?> ---INI-- -safe_mode = 1 --FILE-- <?php $filename = dirname(__FILE__) . '/foo.test'; diff --git a/ext/posix/tests/posix_access_error_modes.phpt b/ext/posix/tests/posix_access_error_modes.phpt index afeb63e1e5..fb04e34683 100644 --- a/ext/posix/tests/posix_access_error_modes.phpt +++ b/ext/posix/tests/posix_access_error_modes.phpt @@ -17,8 +17,6 @@ if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available.'); } ?> ---INI-- -safe_mode = 1 --FILE-- <?php $filename = dirname(__FILE__) . '/foo.test'; diff --git a/ext/posix/tests/posix_access_error_wrongparams.phpt b/ext/posix/tests/posix_access_error_wrongparams.phpt index 10c6883cc1..35556a13af 100644 --- a/ext/posix/tests/posix_access_error_wrongparams.phpt +++ b/ext/posix/tests/posix_access_error_wrongparams.phpt @@ -17,8 +17,6 @@ if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available.'); } ?> ---INI-- -safe_mode = 1 --FILE-- <?php diff --git a/ext/posix/tests/posix_access_safemode.phpt b/ext/posix/tests/posix_access_safemode.phpt index 0ce1e4c444..b726b4fdbb 100644 --- a/ext/posix/tests/posix_access_safemode.phpt +++ b/ext/posix/tests/posix_access_safemode.phpt @@ -14,8 +14,6 @@ if (posix_geteuid() == 0) { if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available.'); } ---INI-- -safe_mode = 1 --FILE-- <?php var_dump(posix_access('/tmp', POSIX_W_OK)); diff --git a/ext/posix/tests/posix_mkfifo_safemode.phpt b/ext/posix/tests/posix_mkfifo_safemode.phpt index 79c4fed57f..1126c00df0 100644 --- a/ext/posix/tests/posix_mkfifo_safemode.phpt +++ b/ext/posix/tests/posix_mkfifo_safemode.phpt @@ -21,8 +21,6 @@ if (PHP_VERSION_ID < 503099) { die('SKIP Safe mode is no longer available.'); } ?> ---INI-- -safe_mode = 1 --FILE-- <?php var_dump(posix_mkfifo('/tmp/foobar', 0644)); |