Lines Matching refs:getenv
174 if (getenv("TEST_PHP_WORKER")) {
175 $workerID = intval(getenv("TEST_PHP_WORKER"));
183 if (getenv('TEST_PHP_SRCDIR')) {
184 @chdir(getenv('TEST_PHP_SRCDIR'));
216 $environment = getenv();
242 $environment["SystemRoot"] = getenv("SystemRoot");
249 if (getenv('TEST_PHP_LOG_FORMAT')) {
250 $log_format = strtoupper(getenv('TEST_PHP_LOG_FORMAT'));
256 if (getenv('TEST_PHP_DETAILED')) {
257 $DETAILED = getenv('TEST_PHP_DETAILED');
264 if (getenv('SHOW_ONLY_GROUPS')) {
265 $SHOW_ONLY_GROUPS = explode(",", getenv('SHOW_ONLY_GROUPS'));
271 if (getenv('TEST_PHP_USER')) {
272 $user_tests = explode(',', getenv('TEST_PHP_USER'));
319 define('TRAVIS_CI', (bool) getenv('TRAVIS'));
384 if (getenv('TEST_PHP_ARGS')) {
385 $argv = array_merge($argv, explode(' ', getenv('TEST_PHP_ARGS')));
662 $php = getenv('TEST_PHP_EXECUTABLE');
669 $php_cgi = getenv('TEST_PHP_CGI_EXECUTABLE');
676 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
804 if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&