From 4ae8364dec6678dd024f5330ce23a7962ed4410f Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 2 Jul 2008 12:46:48 +0000 Subject: [PATCH] - fix make test TESTS=... and dynamic extension usage on windows --- run-tests.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'"; } -- 2.50.1