diff options
author | Brad King <brad.king@kitware.com> | 2017-11-27 13:51:10 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-11-27 13:51:35 (GMT) |
commit | 0c1912e3e58bebe9eb7c6dcac7a478dc607dba66 (patch) | |
tree | 752993eb08fdc42731d2d635c596ad4572cef5d0 /Source/cmMakefile.h | |
parent | b1d3fb7fba735d829c2cd655830161871827d82e (diff) | |
parent | fe2c2b0ffb567ca7d51036c69845091f70736a50 (diff) | |
download | CMake-0c1912e3e58bebe9eb7c6dcac7a478dc607dba66.zip CMake-0c1912e3e58bebe9eb7c6dcac7a478dc607dba66.tar.gz CMake-0c1912e3e58bebe9eb7c6dcac7a478dc607dba66.tar.bz2 |
Merge topic 'serverFixTestDiscovery'
fe2c2b0f server: ctestInfo fix to return all tests
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1479
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 7c27aef..5e87393 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -617,11 +617,6 @@ public: cmGlobalGenerator* GetGlobalGenerator() const; /** - * Get all the test names this makefile knows about - */ - void GetTestNames(std::vector<std::string>& testNames); - - /** * Get all the source files this makefile knows about */ const std::vector<cmSourceFile*>& GetSourceFiles() const @@ -644,6 +639,11 @@ public: cmTest* GetTest(const std::string& testName) const; /** + * Get all tests that run under the given configuration. + */ + void GetTests(const std::string& config, std::vector<cmTest*>& tests); + + /** * Return a location of a file in cmake or custom modules directory */ std::string GetModulesFile(const char* name) const; |