[llvm-cov] Fix missing slash in -path-equivalence

This commit is contained in:
Zequan Wu 2020-11-06 14:53:57 -08:00
parent c9ca3a3c66
commit c75a0a1e9d

View file

@ -399,9 +399,9 @@ void CodeCoverageTool::remapPathNames(const CoverageMapping &Coverage) {
return "";
SmallString<128> NativePath;
sys::path::native(Path, NativePath);
sys::path::remove_dots(NativePath, true);
if (!sys::path::is_separator(NativePath.back()))
NativePath += sys::path::get_separator();
sys::path::remove_dots(NativePath, true);
return NativePath.c_str();
};
std::string RemapFrom = nativeWithTrailing(PathRemapping->first);