summaryrefslogtreecommitdiff
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-11-27 13:51:10 +0000
committerKitware Robot <kwrobot@kitware.com>2017-11-27 08:51:35 -0500
commit0c1912e3e58bebe9eb7c6dcac7a478dc607dba66 (patch)
tree752993eb08fdc42731d2d635c596ad4572cef5d0 /Source/cmMakefile.h
parentb1d3fb7fba735d829c2cd655830161871827d82e (diff)
parentfe2c2b0ffb567ca7d51036c69845091f70736a50 (diff)
downloadcmake-0c1912e3e58bebe9eb7c6dcac7a478dc607dba66.tar.gz
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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 7c27aefc06..5e87393581 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;