STYLE: Add TODO comment about CTest configuration
Currently CTest does not load configuration settings computed at CMake Configure time when running a dashboard script. This adds a comment describing refactoring that might help resolve the problem.
This commit is contained in:
parent
a26481f9fb
commit
dc69ed8e99
|
@ -395,6 +395,10 @@ private:
|
|||
typedef std::map<cmStdString, cmStdString> CTestConfigurationMap;
|
||||
|
||||
std::string CTestConfigFile;
|
||||
// TODO: The ctest configuration should be a hierarchy of
|
||||
// configuration option sources: command-line, script, ini file.
|
||||
// Then the ini file can get re-loaded whenever it changes without
|
||||
// affecting any higher-precedence settings.
|
||||
CTestConfigurationMap CTestConfiguration;
|
||||
CTestConfigurationMap CTestConfigurationOverwrites;
|
||||
PartInfo Parts[PartCount];
|
||||
|
|
Loading…
Reference in New Issue