2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2009-03-16 17:40:46 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2009-03-16 17:40:46 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2009-03-16 17:40:46 +03:00
|
|
|
#include "cmTestGenerator.h"
|
|
|
|
|
2009-08-11 17:54:56 +04:00
|
|
|
#include "cmGeneratorExpression.h"
|
2016-08-17 02:08:13 +03:00
|
|
|
#include "cmGeneratorTarget.h"
|
2015-08-05 22:03:26 +03:00
|
|
|
#include "cmLocalGenerator.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmOutputConverter.h"
|
2016-08-17 02:08:13 +03:00
|
|
|
#include "cmProperty.h"
|
|
|
|
#include "cmPropertyMap.h"
|
|
|
|
#include "cmState.h"
|
2009-03-16 17:42:40 +03:00
|
|
|
#include "cmSystemTools.h"
|
2009-03-16 17:40:46 +03:00
|
|
|
#include "cmTest.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cm_auto_ptr.hxx"
|
2009-03-16 17:40:46 +03:00
|
|
|
|
2016-08-17 02:08:13 +03:00
|
|
|
#include <map>
|
|
|
|
#include <ostream>
|
|
|
|
#include <utility>
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmTestGenerator::cmTestGenerator(
|
|
|
|
cmTest* test, std::vector<std::string> const& configurations)
|
|
|
|
: cmScriptGenerator("CTEST_CONFIGURATION_TYPE", configurations)
|
|
|
|
, Test(test)
|
2009-03-16 17:40:46 +03:00
|
|
|
{
|
2009-03-16 17:51:30 +03:00
|
|
|
this->ActionsPerConfig = !test->GetOldStyle();
|
2009-03-16 17:40:46 +03:00
|
|
|
this->TestGenerated = false;
|
2016-06-27 23:44:16 +03:00
|
|
|
this->LG = CM_NULLPTR;
|
2009-03-16 17:40:46 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmTestGenerator::~cmTestGenerator()
|
2009-03-16 17:40:46 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-05 22:03:26 +03:00
|
|
|
void cmTestGenerator::Compute(cmLocalGenerator* lg)
|
|
|
|
{
|
|
|
|
this->LG = lg;
|
|
|
|
}
|
|
|
|
|
2009-03-16 17:40:46 +03:00
|
|
|
void cmTestGenerator::GenerateScriptConfigs(std::ostream& os,
|
|
|
|
Indent const& indent)
|
|
|
|
{
|
2013-09-18 21:05:05 +04:00
|
|
|
// Create the tests.
|
2009-03-16 17:40:46 +03:00
|
|
|
this->cmScriptGenerator::GenerateScriptConfigs(os, indent);
|
|
|
|
}
|
|
|
|
|
2009-03-16 17:51:30 +03:00
|
|
|
void cmTestGenerator::GenerateScriptActions(std::ostream& os,
|
2009-03-16 17:40:46 +03:00
|
|
|
Indent const& indent)
|
2009-03-16 17:51:30 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ActionsPerConfig) {
|
2009-03-16 17:51:30 +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-05-16 17:34:04 +03:00
|
|
|
} else {
|
2009-03-16 17:51:30 +03:00
|
|
|
// This is an old-style test, so there is only one config.
|
2016-05-16 17:34:04 +03:00
|
|
|
// assert(this->Test->GetOldStyle());
|
2009-03-16 17:51:30 +03:00
|
|
|
this->GenerateOldStyle(os, indent);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-03-16 17:51:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmTestGenerator::GenerateScriptForConfig(std::ostream& os,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2009-03-16 17:51:30 +03:00
|
|
|
Indent const& indent)
|
|
|
|
{
|
|
|
|
this->TestGenerated = true;
|
|
|
|
|
2009-08-11 17:54:56 +04:00
|
|
|
// Set up generator expression evaluation context.
|
2015-07-09 00:52:51 +03:00
|
|
|
cmGeneratorExpression ge(this->Test->GetBacktrace());
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2009-03-16 17:51:30 +03:00
|
|
|
// Start the test command.
|
2013-08-22 13:30:19 +04:00
|
|
|
os << indent << "add_test(" << this->Test->GetName() << " ";
|
2009-03-16 17:51:30 +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-05-16 17:34:04 +03:00
|
|
|
cmGeneratorTarget* target = this->LG->FindGeneratorTargetToUse(exe);
|
|
|
|
if (target && target->GetType() == cmState::EXECUTABLE) {
|
2009-03-16 17:51:30 +03:00
|
|
|
// Use the target file on disk.
|
|
|
|
exe = target->GetFullPath(config);
|
2015-03-29 05:05:35 +03:00
|
|
|
|
|
|
|
// Prepend with the emulator when cross compiling if required.
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* emulator = target->GetProperty("CROSSCOMPILING_EMULATOR");
|
2016-06-27 23:44:16 +03:00
|
|
|
if (emulator != CM_NULLPTR) {
|
2015-03-29 05:05:35 +03:00
|
|
|
std::vector<std::string> emulatorWithArgs;
|
|
|
|
cmSystemTools::ExpandListArgument(emulator, emulatorWithArgs);
|
|
|
|
std::string emulatorExe(emulatorWithArgs[0]);
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(emulatorExe);
|
2015-05-16 01:55:21 +03:00
|
|
|
os << cmOutputConverter::EscapeForCMake(emulatorExe) << " ";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator ei =
|
|
|
|
emulatorWithArgs.begin() + 1;
|
|
|
|
ei != emulatorWithArgs.end(); ++ei) {
|
2015-05-16 01:55:21 +03:00
|
|
|
os << cmOutputConverter::EscapeForCMake(*ei) << " ";
|
2015-03-29 05:05:35 +03:00
|
|
|
}
|
2009-03-16 17:51:30 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2009-03-16 17:51:30 +03:00
|
|
|
// Use the command name given.
|
2015-07-25 17:56:52 +03:00
|
|
|
exe = ge.Parse(exe.c_str())->Evaluate(this->LG, config);
|
2009-03-16 17:51:30 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(exe);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-03-16 17:51:30 +03:00
|
|
|
|
|
|
|
// Generate the command line with full escapes.
|
2015-05-16 01:55:21 +03:00
|
|
|
os << cmOutputConverter::EscapeForCMake(exe);
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator ci = command.begin() + 1;
|
|
|
|
ci != command.end(); ++ci) {
|
2015-05-16 01:55:21 +03:00
|
|
|
os << " " << cmOutputConverter::EscapeForCMake(
|
2016-05-16 17:34:04 +03:00
|
|
|
ge.Parse(*ci)->Evaluate(this->LG, config));
|
|
|
|
}
|
2009-03-16 17:51:30 +03:00
|
|
|
|
|
|
|
// Finish the test command.
|
|
|
|
os << ")\n";
|
2013-09-18 21:05:05 +04:00
|
|
|
|
|
|
|
// Output properties for the test.
|
|
|
|
cmPropertyMap& pm = this->Test->GetProperties();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!pm.empty()) {
|
2013-09-18 21:05:05 +04:00
|
|
|
os << indent << "set_tests_properties(" << this->Test->GetName()
|
|
|
|
<< " PROPERTIES ";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cmPropertyMap::const_iterator i = pm.begin(); i != pm.end(); ++i) {
|
|
|
|
os << " " << i->first << " "
|
|
|
|
<< cmOutputConverter::EscapeForCMake(
|
|
|
|
ge.Parse(i->second.GetValue())->Evaluate(this->LG, config));
|
2013-09-18 21:05:05 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
os << ")" << std::endl;
|
|
|
|
}
|
2009-03-16 17:51:30 +03:00
|
|
|
}
|
|
|
|
|
2011-06-10 17:29:30 +04:00
|
|
|
void cmTestGenerator::GenerateScriptNoConfig(std::ostream& os,
|
|
|
|
Indent const& indent)
|
|
|
|
{
|
2013-08-22 13:30:19 +04:00
|
|
|
os << indent << "add_test(" << this->Test->GetName() << " NOT_AVAILABLE)\n";
|
2011-06-10 17:29:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cmTestGenerator::NeedsScriptNoConfig() const
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
return (this->TestGenerated && // test generated for at least one config
|
2011-06-10 17:29:30 +04:00
|
|
|
this->ActionsPerConfig && // test is config-aware
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Configurations.empty() && // test runs in all configs
|
2011-06-10 17:29:30 +04:00
|
|
|
!this->ConfigurationTypes->empty()); // config-dependent command
|
|
|
|
}
|
|
|
|
|
2009-03-16 17:51:30 +03:00
|
|
|
void cmTestGenerator::GenerateOldStyle(std::ostream& fout,
|
|
|
|
Indent const& indent)
|
2009-03-16 17:40:46 +03:00
|
|
|
{
|
|
|
|
this->TestGenerated = true;
|
|
|
|
|
2009-03-16 17:42:40 +03:00
|
|
|
// 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);
|
2009-03-16 17:40:46 +03:00
|
|
|
fout << indent;
|
2013-08-22 13:30:19 +04:00
|
|
|
fout << "add_test(";
|
2009-03-16 17:42:40 +03:00
|
|
|
fout << this->Test->GetName() << " \"" << exe << "\"";
|
2009-03-16 17:40:46 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator argit = command.begin() + 1;
|
|
|
|
argit != command.end(); ++argit) {
|
2009-03-16 17:40:46 +03:00
|
|
|
// Just double-quote all arguments so they are re-parsed
|
|
|
|
// correctly by the test system.
|
|
|
|
fout << " \"";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::string::const_iterator c = argit->begin(); c != argit->end();
|
|
|
|
++c) {
|
2009-03-16 17:40:46 +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.
|
2016-05-16 17:34:04 +03:00
|
|
|
if ((*c == '"')) {
|
2009-03-16 17:40:46 +03:00
|
|
|
fout << '\\';
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << *c;
|
2009-03-16 17:40:46 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\"";
|
|
|
|
}
|
2009-03-16 17:40:46 +03:00
|
|
|
fout << ")" << std::endl;
|
2013-09-18 21:05:05 +04:00
|
|
|
|
|
|
|
// Output properties for the test.
|
|
|
|
cmPropertyMap& pm = this->Test->GetProperties();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!pm.empty()) {
|
2013-09-18 21:05:05 +04:00
|
|
|
fout << indent << "set_tests_properties(" << this->Test->GetName()
|
|
|
|
<< " PROPERTIES ";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cmPropertyMap::const_iterator i = pm.begin(); i != pm.end(); ++i) {
|
|
|
|
fout << " " << i->first << " "
|
|
|
|
<< cmOutputConverter::EscapeForCMake(i->second.GetValue());
|
2013-09-18 21:05:05 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << ")" << std::endl;
|
|
|
|
}
|
2009-03-16 17:40:46 +03:00
|
|
|
}
|