Lines Matching refs:getenv
170 if (getenv("TEST_PHP_WORKER")) {
171 $workerID = intval(getenv("TEST_PHP_WORKER"));
179 if (getenv('TEST_PHP_SRCDIR')) {
180 @chdir(getenv('TEST_PHP_SRCDIR'));
212 $environment = getenv();
238 $environment["SystemRoot"] = getenv("SystemRoot");
241 if (getenv('TEST_PHP_LOG_FORMAT')) {
242 $log_format = strtoupper(getenv('TEST_PHP_LOG_FORMAT'));
248 if (getenv('TEST_PHP_DETAILED')) {
249 $DETAILED = getenv('TEST_PHP_DETAILED');
256 if (getenv('SHOW_ONLY_GROUPS')) {
257 $SHOW_ONLY_GROUPS = explode(",", getenv('SHOW_ONLY_GROUPS'));
264 if (getenv('TEST_PHP_USER')) {
265 $user_tests = explode(',', getenv('TEST_PHP_USER'));
377 if (getenv('TEST_PHP_ARGS')) {
378 $argv = array_merge($argv, explode(' ', getenv('TEST_PHP_ARGS')));
657 $php = getenv('TEST_PHP_EXECUTABLE') ?: PHP_BINARY;
660 $php_cgi = getenv('TEST_PHP_CGI_EXECUTABLE') ?: get_binary($php, 'php-cgi', 'sapi/cgi/php-cgi');
661 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE') ?: get_binary($php, 'phpdbg', 'sapi/phpdbg/phpdbg');
780 if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&