Patch run-tests-cgi for Testing related Bug #62055
Patch version 2015-07-18 13:48 UTC
Return to Bug #62055 |
Download this patch
Patch Revisions:
Developer: cmb@php.net
run-tests.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/run-tests.php b/run-tests.php
index 87a6776..37d28dc 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -1337,7 +1337,7 @@ TEST $file
$tested = trim($section_text['TEST']);
/* For GET/POST/PUT tests, check if cgi sapi is available and if it is, use it. */
- if (!empty($section_text['GET']) || !empty($section_text['POST']) || !empty($section_text['GZIP_POST']) || !empty($section_text['DEFLATE_POST']) || !empty($section_text['POST_RAW']) || !empty($section_text['PUT']) || !empty($section_text['COOKIE']) || !empty($section_text['EXPECTHEADERS'])) {
+ if (array_key_exists('CGI', $section_text) || !empty($section_text['GET']) || !empty($section_text['POST']) || !empty($section_text['GZIP_POST']) || !empty($section_text['DEFLATE_POST']) || !empty($section_text['POST_RAW']) || !empty($section_text['PUT']) || !empty($section_text['COOKIE']) || !empty($section_text['EXPECTHEADERS'])) {
if (isset($php_cgi)) {
$old_php = $php;
$php = $php_cgi . ' -C ';
|