Removed assumption that phpunit.xml is relative

This commit is contained in:
Daniel Holmes 2011-01-24 16:35:42 +11:00 committed by Fabien Potencier
parent e1a3cd0446
commit fd98c8f0f2

View File

@ -63,9 +63,9 @@ abstract class WebTestCase extends BaseWebTestCase
// find the --configuration flag from PHPUnit
$cli = implode(' ', $_SERVER['argv']);
if (preg_match('/\-\-configuration[= ]+([^ ]+)/', $cli, $matches)) {
$dir = $dir.'/'.$matches[1];
$dir = realpath($matches[1]);
} elseif (preg_match('/\-c +([^ ]+)/', $cli, $matches)) {
$dir = $dir.'/'.$matches[1];
$dir = realpath($matches[1]);
} elseif (file_exists(getcwd().'/phpunit.xml') || file_exists(getcwd().'/phpunit.xml.dist')) {
$dir = getcwd();
} else {