cmake/Source/cmTestGenerator.cxx

192 lines
6.0 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2009-10-04 10:30:41 +03:00
#include "cmTestGenerator.h"
2017-04-14 19:02:05 +02:00
#include <ostream>
#include <utility>
2009-10-04 10:30:41 +03:00
#include "cmGeneratorExpression.h"
2016-10-30 18:24:19 +01:00
#include "cmGeneratorTarget.h"
2015-11-17 17:22:37 +01:00
#include "cmLocalGenerator.h"
2016-07-09 11:21:54 +02:00
#include "cmOutputConverter.h"
2016-10-30 18:24:19 +01:00
#include "cmProperty.h"
#include "cmPropertyMap.h"
2017-04-14 19:02:05 +02:00
#include "cmStateTypes.h"
2009-10-04 10:30:41 +03:00
#include "cmSystemTools.h"
#include "cmTest.h"
2016-07-09 11:21:54 +02:00
cmTestGenerator::cmTestGenerator(
cmTest* test, std::vector<std::string> const& configurations)
: cmScriptGenerator("CTEST_CONFIGURATION_TYPE", configurations)
, Test(test)
2009-10-04 10:30:41 +03:00
{
this->ActionsPerConfig = !test->GetOldStyle();
this->TestGenerated = false;
2018-01-26 17:06:56 +01:00
this->LG = nullptr;
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
cmTestGenerator::~cmTestGenerator()
2009-10-04 10:30:41 +03:00
{
}
2015-11-17 17:22:37 +01:00
void cmTestGenerator::Compute(cmLocalGenerator* lg)
{
this->LG = lg;
}
2018-04-23 21:13:27 +02:00
bool cmTestGenerator::TestsForConfig(const std::string& config)
{
return this->GeneratesForConfig(config);
}
cmTest* cmTestGenerator::GetTest() const
{
return this->Test;
}
2017-07-20 19:35:53 +02:00
void cmTestGenerator::GenerateScriptConfigs(std::ostream& os, Indent indent)
2009-10-04 10:30:41 +03:00
{
2014-08-03 19:52:23 +02:00
// Create the tests.
2009-10-04 10:30:41 +03:00
this->cmScriptGenerator::GenerateScriptConfigs(os, indent);
}
2017-07-20 19:35:53 +02:00
void cmTestGenerator::GenerateScriptActions(std::ostream& os, Indent indent)
2009-10-04 10:30:41 +03:00
{
2016-07-09 11:21:54 +02:00
if (this->ActionsPerConfig) {
2009-10-04 10:30:41 +03:00
// This is the per-config generation in a single-configuration
// build generator case. The superclass will call our per-config
// method.
this->cmScriptGenerator::GenerateScriptActions(os, indent);
2016-07-09 11:21:54 +02:00
} else {
2009-10-04 10:30:41 +03:00
// This is an old-style test, so there is only one config.
2016-07-09 11:21:54 +02:00
// assert(this->Test->GetOldStyle());
2009-10-04 10:30:41 +03:00
this->GenerateOldStyle(os, indent);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
void cmTestGenerator::GenerateScriptForConfig(std::ostream& os,
2015-04-27 22:25:09 +02:00
const std::string& config,
2017-07-20 19:35:53 +02:00
Indent indent)
2009-10-04 10:30:41 +03:00
{
this->TestGenerated = true;
// Set up generator expression evaluation context.
2015-11-17 17:22:37 +01:00
cmGeneratorExpression ge(this->Test->GetBacktrace());
2009-10-04 10:30:41 +03:00
// Start the test command.
2014-08-03 19:52:23 +02:00
os << indent << "add_test(" << this->Test->GetName() << " ";
2009-10-04 10:30:41 +03:00
// Get the test command line to be executed.
std::vector<std::string> const& command = this->Test->GetCommand();
// Check whether the command executable is a target whose name is to
// be translated.
std::string exe = command[0];
2016-07-09 11:21:54 +02:00
cmGeneratorTarget* target = this->LG->FindGeneratorTargetToUse(exe);
2017-04-14 19:02:05 +02:00
if (target && target->GetType() == cmStateEnums::EXECUTABLE) {
2009-10-04 10:30:41 +03:00
// Use the target file on disk.
exe = target->GetFullPath(config);
2015-08-17 11:37:30 +02:00
// Prepend with the emulator when cross compiling if required.
2016-07-09 11:21:54 +02:00
const char* emulator = target->GetProperty("CROSSCOMPILING_EMULATOR");
2018-01-26 17:06:56 +01:00
if (emulator != nullptr) {
2015-08-17 11:37:30 +02:00
std::vector<std::string> emulatorWithArgs;
cmSystemTools::ExpandListArgument(emulator, emulatorWithArgs);
std::string emulatorExe(emulatorWithArgs[0]);
cmSystemTools::ConvertToUnixSlashes(emulatorExe);
2015-11-17 17:22:37 +01:00
os << cmOutputConverter::EscapeForCMake(emulatorExe) << " ";
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::const_iterator ei =
emulatorWithArgs.begin() + 1;
ei != emulatorWithArgs.end(); ++ei) {
2015-11-17 17:22:37 +01:00
os << cmOutputConverter::EscapeForCMake(*ei) << " ";
2015-08-17 11:37:30 +02:00
}
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
} else {
2009-10-04 10:30:41 +03:00
// Use the command name given.
2016-03-13 13:35:51 +01:00
exe = ge.Parse(exe.c_str())->Evaluate(this->LG, config);
2009-10-04 10:30:41 +03:00
cmSystemTools::ConvertToUnixSlashes(exe);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Generate the command line with full escapes.
2015-11-17 17:22:37 +01:00
os << cmOutputConverter::EscapeForCMake(exe);
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::const_iterator ci = command.begin() + 1;
ci != command.end(); ++ci) {
2018-08-09 18:06:22 +02:00
os << " "
<< cmOutputConverter::EscapeForCMake(
ge.Parse(*ci)->Evaluate(this->LG, config));
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Finish the test command.
os << ")\n";
2014-08-03 19:52:23 +02:00
// Output properties for the test.
cmPropertyMap& pm = this->Test->GetProperties();
2016-07-09 11:21:54 +02:00
if (!pm.empty()) {
2014-08-03 19:52:23 +02:00
os << indent << "set_tests_properties(" << this->Test->GetName()
<< " PROPERTIES ";
2018-01-26 17:06:56 +01:00
for (auto const& i : pm) {
os << " " << i.first << " "
2016-07-09 11:21:54 +02:00
<< cmOutputConverter::EscapeForCMake(
2018-01-26 17:06:56 +01:00
ge.Parse(i.second.GetValue())->Evaluate(this->LG, config));
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
os << ")" << std::endl;
}
2009-10-04 10:30:41 +03:00
}
2017-07-20 19:35:53 +02:00
void cmTestGenerator::GenerateScriptNoConfig(std::ostream& os, Indent indent)
2011-06-19 15:41:06 +03:00
{
2014-08-03 19:52:23 +02:00
os << indent << "add_test(" << this->Test->GetName() << " NOT_AVAILABLE)\n";
2011-06-19 15:41:06 +03:00
}
bool cmTestGenerator::NeedsScriptNoConfig() const
{
2016-07-09 11:21:54 +02:00
return (this->TestGenerated && // test generated for at least one config
2011-06-19 15:41:06 +03:00
this->ActionsPerConfig && // test is config-aware
2016-07-09 11:21:54 +02:00
this->Configurations.empty() && // test runs in all configs
2011-06-19 15:41:06 +03:00
!this->ConfigurationTypes->empty()); // config-dependent command
}
2017-07-20 19:35:53 +02:00
void cmTestGenerator::GenerateOldStyle(std::ostream& fout, Indent indent)
2009-10-04 10:30:41 +03:00
{
this->TestGenerated = true;
// Get the test command line to be executed.
std::vector<std::string> const& command = this->Test->GetCommand();
std::string exe = command[0];
cmSystemTools::ConvertToUnixSlashes(exe);
fout << indent;
2014-08-03 19:52:23 +02:00
fout << "add_test(";
2009-10-04 10:30:41 +03:00
fout << this->Test->GetName() << " \"" << exe << "\"";
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::const_iterator argit = command.begin() + 1;
argit != command.end(); ++argit) {
2009-10-04 10:30:41 +03:00
// Just double-quote all arguments so they are re-parsed
// correctly by the test system.
fout << " \"";
2018-01-26 17:06:56 +01:00
for (char c : *argit) {
2009-10-04 10:30:41 +03:00
// Escape quotes within arguments. We should escape
// backslashes too but we cannot because it makes the result
// inconsistent with previous behavior of this command.
2018-01-26 17:06:56 +01:00
if (c == '"') {
2009-10-04 10:30:41 +03:00
fout << '\\';
}
2018-01-26 17:06:56 +01:00
fout << c;
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
fout << "\"";
}
2009-10-04 10:30:41 +03:00
fout << ")" << std::endl;
2014-08-03 19:52:23 +02:00
// Output properties for the test.
cmPropertyMap& pm = this->Test->GetProperties();
2016-07-09 11:21:54 +02:00
if (!pm.empty()) {
2014-08-03 19:52:23 +02:00
fout << indent << "set_tests_properties(" << this->Test->GetName()
<< " PROPERTIES ";
2018-01-26 17:06:56 +01:00
for (auto const& i : pm) {
fout << " " << i.first << " "
<< cmOutputConverter::EscapeForCMake(i.second.GetValue());
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
fout << ")" << std::endl;
}
2009-10-04 10:30:41 +03:00
}