Lines Matching refs:phpdbg
146 $pattern_match, $php, $php_cgi, $phpdbg, $preload, $redir_tests,
231 $phpdbg = null;
266 $phpdbg = realpath(dirname($php) . "/phpdbg.exe");
268 $phpdbg = realpath(dirname($php) . "/../../sapi/phpdbg/phpdbg");
270 $phpdbg = realpath("./sapi/phpdbg/phpdbg");
272 $phpdbg = realpath(dirname($php) . "/phpdbg");
274 $phpdbg = null;
276 if ($phpdbg) {
277 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
282 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
284 if ($phpdbg == 'auto') {
285 $phpdbg = TEST_PHP_SRCDIR . '/sapi/phpdbg/phpdbg';
286 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
289 $environment['TEST_PHPDBG_EXECUTABLE'] = $phpdbg;
851 …global $php, $php_cgi, $phpdbg, $php_info, $user_tests, $ini_overwrites, $pass_options, $exts_to_t…
878 if ($phpdbg) {
879 $phpdbg_info = `$phpdbg $pass_options $info_params $no_file_cache -qrr "$info_file"`;
881 $phpdbg_info = "$php_info_sep\nPHP : $phpdbg $phpdbg_info$php_info_sep";
1843 $phpdbg = $env['TEST_PHPDBG_EXECUTABLE'];
2031 if (isset($phpdbg)) {
2032 $php = $phpdbg . ' -qIb';