From: Pierre Joye Date: Wed, 2 Jul 2008 12:46:48 +0000 (+0000) Subject: - fix make test TESTS=... and dynamic extension usage on windows X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1415 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ae8364dec6678dd024f5330ce23a7962ed4410f;p=php - fix make test TESTS=... and dynamic extension usage on windows --- diff --git a/run-tests.php b/run-tests.php index eb6a56277d..d1b91a8ba7 100755 --- a/run-tests.php +++ b/run-tests.php @@ -544,7 +544,9 @@ HELP; } } - if (strlen($conf_passed)) { + if (substr(PHP_OS, 0, 3) != "WIN")) { + $pass_options .= " -c " . escapeshellarg($conf_passed); + } else { $pass_options .= " -c '$conf_passed'"; }