Commit 9348046d authored by Franz Liedke's avatar Franz Liedke

Fix dynamically generated phpunit.xml file not being deleted automatically in the test runner.

parent 7e11bb74
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment