diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2017-10-25 22:00:15 (GMT) |
---|---|---|
committer | Justin Goshi <jgoshi@microsoft.com> | 2017-11-03 16:39:01 (GMT) |
commit | 35a52bd1b4d0350d3c7e94611dd90ddb4b123352 (patch) | |
tree | 9b87b1f35934532109e1b34be528cc810e66b1a2 /Source/cmServerDictionary.h | |
parent | 206354ac4c2b0e245cc02f3c9f8b82990f829ee8 (diff) | |
download | CMake-35a52bd1b4d0350d3c7e94611dd90ddb4b123352.zip CMake-35a52bd1b4d0350d3c7e94611dd90ddb4b123352.tar.gz CMake-35a52bd1b4d0350d3c7e94611dd90ddb4b123352.tar.bz2 |
server: add "ctestInfo" request to get test info
Diffstat (limited to 'Source/cmServerDictionary.h')
-rw-r--r-- | Source/cmServerDictionary.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmServerDictionary.h b/Source/cmServerDictionary.h index 03f1cc1..040c1fd 100644 --- a/Source/cmServerDictionary.h +++ b/Source/cmServerDictionary.h @@ -23,6 +23,7 @@ static const std::string kPROGRESS_TYPE = "progress"; static const std::string kREPLY_TYPE = "reply"; static const std::string kSET_GLOBAL_SETTINGS_TYPE = "setGlobalSettings"; static const std::string kSIGNAL_TYPE = "signal"; +static const std::string kCTEST_INFO_TYPE = "ctestInfo"; static const std::string kARTIFACTS_KEY = "artifacts"; static const std::string kBUILD_DIRECTORY_KEY = "buildDirectory"; @@ -90,6 +91,10 @@ static const std::string kWATCHED_DIRECTORIES_KEY = "watchedDirectories"; static const std::string kWATCHED_FILES_KEY = "watchedFiles"; static const std::string kHAS_INSTALL_RULE = "hasInstallRule"; static const std::string kINSTALL_PATHS = "installPaths"; +static const std::string kHAS_ENABLED_TESTS = "hasEnabledTests"; +static const std::string kCTEST_NAME = "ctestName"; +static const std::string kCTEST_COMMAND = "ctestCommand"; +static const std::string kCTEST_INFO = "ctestInfo"; static const std::string kTARGET_CROSS_REFERENCES_KEY = "crossReferences"; static const std::string kLINE_NUMBER_KEY = "line"; |