Lines Matching refs:getenv
177 if (getenv("TEST_PHP_WORKER")) {
178 $workerID = intval(getenv("TEST_PHP_WORKER"));
186 if (getenv('TEST_PHP_SRCDIR')) {
187 @chdir(getenv('TEST_PHP_SRCDIR'));
219 $environment = getenv();
245 $environment["SystemRoot"] = getenv("SystemRoot");
252 if (getenv('TEST_PHP_LOG_FORMAT')) {
253 $log_format = strtoupper(getenv('TEST_PHP_LOG_FORMAT'));
259 if (getenv('TEST_PHP_DETAILED')) {
260 $DETAILED = getenv('TEST_PHP_DETAILED');
267 if (getenv('SHOW_ONLY_GROUPS')) {
268 $SHOW_ONLY_GROUPS = explode(",", getenv('SHOW_ONLY_GROUPS'));
274 if (getenv('TEST_PHP_USER')) {
275 $user_tests = explode(',', getenv('TEST_PHP_USER'));
319 define('TRAVIS_CI', (bool) getenv('TRAVIS'));
385 if (getenv('TEST_PHP_ARGS')) {
386 $argv = array_merge($argv, explode(' ', getenv('TEST_PHP_ARGS')));
661 $php = getenv('TEST_PHP_EXECUTABLE');
668 $php_cgi = getenv('TEST_PHP_CGI_EXECUTABLE');
675 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
803 if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&