diff --git a/build.xml b/build.xml index 4ee8156f4..215d1d5c5 100644 --- a/build.xml +++ b/build.xml @@ -134,7 +134,7 @@ --> @@ -213,4 +213,4 @@ - \ No newline at end of file + diff --git a/tools/NativePhpunitTask.php b/tools/NativePhpunitTask.php index c8a7b1099..d4e47c8bb 100644 --- a/tools/NativePhpunitTask.php +++ b/tools/NativePhpunitTask.php @@ -114,6 +114,13 @@ class NativePhpunitTask extends Task $this->log("PHPUnit Success: ".count($result->passed())." tests passed, no ". "failures (".$result->skippedCount()." skipped, ".$result->notImplementedCount()." not implemented)"); + if (file_exists($this->coverageClover)) { + $content = file_get_contents($this->coverageClover); + $content = str_replace("\\", ".", $content); + file_put_contents($this->coverageClover, $content); + unset($content); + } + } catch(\Exception $e) { throw new BuildException("NativePhpunitTask failed: ".$e->getMessage()); }