ERR: Fix coverage on gcc 2.95
This commit is contained in:
parent
d9658c15bc
commit
6e5eddb917
|
@ -1262,8 +1262,9 @@ int cmCTest::CoverageDirectory()
|
|||
|
||||
for ( cc = 0; cc < files.size(); cc ++ )
|
||||
{
|
||||
std::string command = coverageCommand + " -o \"" + files[cc] + "\"";
|
||||
command += " -l \"" + files[cc] + "\"";
|
||||
std::string command = coverageCommand + " -o \"" +
|
||||
cmSystemTools::GetFilenamePath(files[cc]) +
|
||||
"\" -l \"" + files[cc] + "\"";
|
||||
std::string output;
|
||||
int retVal = 0;
|
||||
//std::cout << "Run gcov on " << files[cc] << std::flush;
|
||||
|
|
Loading…
Reference in New Issue