Merge pull request #1193 from franzliedke/patch-43

Delete phpunit.xml when unit testing
This commit is contained in:
Jason Lewis
2012-09-07 23:41:08 -07:00
2 changed files with 2 additions and 11 deletions

View File

@@ -86,9 +86,9 @@ class Runner extends Task {
// fix the spaced directories problem when using the command line
// strings with spaces inside should be wrapped in quotes.
$path = escapeshellarg($path);
$esc_path = escapeshellarg($path);
passthru('phpunit --configuration '.$path, $status);
passthru('phpunit --configuration '.$esc_path, $status);
@unlink($path);