Browse Source

- fix make test TESTS=... and dynamic extension usage on windows

experimental/first_unicode_implementation
Pierre Joye 18 years ago
parent
commit
4ae8364dec
  1. 4
      run-tests.php

4
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'";
}

Loading…
Cancel
Save