You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmCTestCoverageCommand.h"
|
|
|
|
#include <set>
|
|
|
|
#include <cmext/string_view>
|
|
|
|
#include "cmCTest.h"
|
|
#include "cmCTestCoverageHandler.h"
|
|
|
|
class cmCTestGenericHandler;
|
|
|
|
void cmCTestCoverageCommand::BindArguments()
|
|
{
|
|
this->cmCTestHandlerCommand::BindArguments();
|
|
this->Bind("LABELS"_s, this->Labels);
|
|
}
|
|
|
|
cmCTestGenericHandler* cmCTestCoverageCommand::InitializeHandler()
|
|
{
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
this->Makefile, "CoverageCommand", "CTEST_COVERAGE_COMMAND", this->Quiet);
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
this->Makefile, "CoverageExtraFlags", "CTEST_COVERAGE_EXTRA_FLAGS",
|
|
this->Quiet);
|
|
cmCTestCoverageHandler* handler = this->CTest->GetCoverageHandler();
|
|
handler->Initialize();
|
|
|
|
// If a LABELS option was given, select only files with the labels.
|
|
if (this->Labels) {
|
|
handler->SetLabelFilter(
|
|
std::set<std::string>(this->Labels->begin(), this->Labels->end()));
|
|
}
|
|
|
|
handler->SetQuiet(this->Quiet);
|
|
return handler;
|
|
}
|