[FrameworkBundle] fixed error with arg reversing from previous changes

This commit is contained in:
Daniel Holmes 2011-03-29 14:58:43 +11:00
parent e87f5d507e
commit 0b65923c37

View File

@ -88,10 +88,10 @@ abstract class WebTestCase extends BaseWebTestCase
private function getPhpUnitCliConfigArgument()
{
$dir = null;
foreach (array_reverse($_SERVER['argv']) as $argIndex=>$testArg) {
$reversedArgs = array_reverse($_SERVER['argv']);
foreach ($reversedArgs as $argIndex=>$testArg) {
if ($testArg === '-c' || $testArg === '--configuration') {
$dir = realpath($_SERVER['argv'][$argIndex + 1]);
$dir = realpath($reversedArgs[$argIndex - 1]);
break;
} else if (strpos($testArg, '--configuration=') === 0) {
$argPath = substr($testArg, strlen('--configuration='));