1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[RGT][ProfileData] Correct a test assertion

Found by the Rotten Green Tests project.

Differential Revision: https://reviews.llvm.org/D95258
This commit is contained in:
Paul Robinson 2021-01-15 08:40:47 -08:00
parent 52b9cd0c02
commit 25b096eb95

View File

@ -835,8 +835,7 @@ TEST_P(CoverageMappingTest, dont_detect_false_instantiations) {
std::vector<InstantiationGroup> InstantiationGroups =
LoadedCoverage->getInstantiationGroups("expanded");
for (const auto &Group : InstantiationGroups)
ASSERT_EQ(Group.size(), 1U);
ASSERT_TRUE(InstantiationGroups.empty());
}
TEST_P(CoverageMappingTest, load_coverage_for_expanded_file) {