diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2018-10-18 18:33:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-08 16:22:11 (GMT) |
commit | 7b81d8c21e0a0d8756f0afdc0530c2d06ee3bcd4 (patch) | |
tree | 0848b0d979656afe9b796ecbd6b5241df8a3bb8a /Source/cmTestGenerator.h | |
parent | 00530d74d5d07a320c998d6caccc00cf4e59b06d (diff) | |
download | CMake-7b81d8c21e0a0d8756f0afdc0530c2d06ee3bcd4.zip CMake-7b81d8c21e0a0d8756f0afdc0530c2d06ee3bcd4.tar.gz CMake-7b81d8c21e0a0d8756f0afdc0530c2d06ee3bcd4.tar.bz2 |
TestGenerator: Record support file and line where test was added
Add internal test properties that ctest can use to report where
the test was added in CMake code.
Diffstat (limited to 'Source/cmTestGenerator.h')
-rw-r--r-- | Source/cmTestGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTestGenerator.h b/Source/cmTestGenerator.h index 73d05a3..f26d2ff 100644 --- a/Source/cmTestGenerator.h +++ b/Source/cmTestGenerator.h @@ -35,6 +35,9 @@ public: cmTest* GetTest() const; +private: + void GenerateInternalProperties(std::ostream& os); + protected: void GenerateScriptConfigs(std::ostream& os, Indent indent) override; void GenerateScriptActions(std::ostream& os, Indent indent) override; |