From: NAKAMURA Takumi Date: Sat, 9 Sep 2017 06:19:53 +0000 (+0000) Subject: CoverageMappingTest.cpp: Suppress warnings. [-Wdocumentation] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23483f0a337bca48b80e37ce0f82e6081ffc1647;p=llvm CoverageMappingTest.cpp: Suppress warnings. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312861 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ProfileData/CoverageMappingTest.cpp b/unittests/ProfileData/CoverageMappingTest.cpp index f5c2bd78fe5..8c9c8c48234 100644 --- a/unittests/ProfileData/CoverageMappingTest.cpp +++ b/unittests/ProfileData/CoverageMappingTest.cpp @@ -418,12 +418,12 @@ TEST_P(CoverageMappingTest, multiple_regions_end_after_parent_ends) { // 7| c} d{ e{ // 8| // 9| d} e} F} - addCMR(Counter::getCounter(0), "file1", 1, 1, 9, 9); //< F - addCMR(Counter::getCounter(0), "file1", 1, 1, 3, 5); //< a - addCMR(Counter::getCounter(0), "file1", 3, 5, 5, 4); //< b - addCMR(Counter::getCounter(1), "file1", 3, 5, 7, 3); //< c - addCMR(Counter::getCounter(1), "file1", 7, 3, 9, 2); //< d - addCMR(Counter::getCounter(1), "file1", 7, 7, 9, 7); //< e + addCMR(Counter::getCounter(0), "file1", 1, 1, 9, 9); // < F + addCMR(Counter::getCounter(0), "file1", 1, 1, 3, 5); // < a + addCMR(Counter::getCounter(0), "file1", 3, 5, 5, 4); // < b + addCMR(Counter::getCounter(1), "file1", 3, 5, 7, 3); // < c + addCMR(Counter::getCounter(1), "file1", 7, 3, 9, 2); // < d + addCMR(Counter::getCounter(1), "file1", 7, 7, 9, 7); // < e EXPECT_THAT_ERROR(loadCoverageMapping(), Succeeded()); const auto FunctionRecords = LoadedCoverage->getCoveredFunctions();