浏览代码

Removed assumption that phpunit.xml is relative

Daniel Holmes 14 年之前
父节点
当前提交
fd98c8f0f2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

+ 2 - 2
src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

@@ -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 {