summaryrefslogtreecommitdiff
path: root/Source/CTest/cmParseJacocoCoverage.cxx
diff options
context:
space:
mode:
authorJoseph Snyder <joe.snyder@kitware.com>2014-07-30 10:26:56 -0400
committerJoseph Snyder <joe.snyder@kitware.com>2014-07-30 11:22:55 -0400
commit9fd04f874c0a046736436b53b9a049a29b536165 (patch)
treeb571c3e9787587ad91b3ddc0f8ef132771c3264e /Source/CTest/cmParseJacocoCoverage.cxx
parent8d1306cd1b2ab7af0360387bfbdd9beff29b480c (diff)
downloadcmake-9fd04f874c0a046736436b53b9a049a29b536165.tar.gz
CTEST: Update Jacoco Coverage search paths
Add a new additional entry to the FilePaths array when a "package" tag has been found. This path should consist of the package information found appended to the projects source directory. This change will allow code held in a /src/main/java/* directory off of the projects source directory to be found, unlike now which assumes a subdirectory contains the code.
Diffstat (limited to 'Source/CTest/cmParseJacocoCoverage.cxx')
-rw-r--r--Source/CTest/cmParseJacocoCoverage.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmParseJacocoCoverage.cxx b/Source/CTest/cmParseJacocoCoverage.cxx
index 4723dd398a..f270adbbea 100644
--- a/Source/CTest/cmParseJacocoCoverage.cxx
+++ b/Source/CTest/cmParseJacocoCoverage.cxx
@@ -42,6 +42,9 @@ class cmParseJacocoCoverage::XMLParser: public cmXMLParser
"/" + this->ModuleName + "/src/main/java/" +
this->PackageName;
this->FilePaths.push_back(FilePath);
+ FilePath = this->Coverage.SourceDir +
+ "/src/main/java/" + this->PackageName;
+ this->FilePaths.push_back(FilePath);
}
else if(name == "sourcefile")
{