2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-06-14 22:00:45 +04:00
|
|
|
#include "cmCTestCoverageCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
2009-03-02 23:33:18 +03:00
|
|
|
#include "cmCTestCoverageHandler.h"
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
class cmCTestGenericHandler;
|
|
|
|
|
2009-03-05 18:17:42 +03:00
|
|
|
cmCTestCoverageCommand::cmCTestCoverageCommand()
|
|
|
|
{
|
|
|
|
this->LabelsMentioned = false;
|
|
|
|
}
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* cmCTestCoverageCommand::InitializeHandler()
|
2005-06-14 22:00:45 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "CoverageCommand", "CTEST_COVERAGE_COMMAND", this->Quiet);
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "CoverageExtraFlags", "CTEST_COVERAGE_EXTRA_FLAGS",
|
|
|
|
this->Quiet);
|
2009-03-02 23:33:18 +03:00
|
|
|
cmCTestCoverageHandler* handler = static_cast<cmCTestCoverageHandler*>(
|
|
|
|
this->CTest->GetInitializedHandler("coverage"));
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!handler) {
|
2005-06-14 22:00:45 +04:00
|
|
|
this->SetError("internal CTest error. Cannot instantiate test handler");
|
2016-06-27 23:44:16 +03:00
|
|
|
return CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-03-02 23:33:18 +03:00
|
|
|
|
|
|
|
// If a LABELS option was given, select only files with the labels.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->LabelsMentioned) {
|
2009-03-02 23:33:18 +03:00
|
|
|
handler->SetLabelFilter(this->Labels);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-03-02 23:33:18 +03:00
|
|
|
|
2015-02-17 23:57:26 +03:00
|
|
|
handler->SetQuiet(this->Quiet);
|
2006-03-29 21:01:24 +04:00
|
|
|
return handler;
|
2005-06-14 22:00:45 +04:00
|
|
|
}
|
|
|
|
|
2009-03-02 23:33:18 +03:00
|
|
|
bool cmCTestCoverageCommand::CheckArgumentKeyword(std::string const& arg)
|
|
|
|
{
|
|
|
|
// Look for arguments specific to this command.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (arg == "LABELS") {
|
2009-03-02 23:33:18 +03:00
|
|
|
this->ArgumentDoing = ArgumentDoingLabels;
|
|
|
|
this->LabelsMentioned = true;
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2009-03-02 23:33:18 +03:00
|
|
|
// Look for other arguments.
|
|
|
|
return this->Superclass::CheckArgumentKeyword(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTestCoverageCommand::CheckArgumentValue(std::string const& arg)
|
|
|
|
{
|
|
|
|
// Handle states specific to this command.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ArgumentDoing == ArgumentDoingLabels) {
|
2009-03-02 23:33:18 +03:00
|
|
|
this->Labels.insert(arg);
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2009-03-02 23:33:18 +03:00
|
|
|
// Look for other arguments.
|
|
|
|
return this->Superclass::CheckArgumentValue(arg);
|
|
|
|
}
|