diff options
author | Brad King <brad.king@kitware.com> | 2024-09-30 13:55:18 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-09-30 13:55:31 (GMT) |
commit | f63823ed15827a24923d8ca04bc3d25214de4ad7 (patch) | |
tree | 02df28b2746bd70c7b4106f8ada513a4efcf2cf8 /Source | |
parent | e36e11996f8f984a361f1c1b1e99978fbebc739b (diff) | |
parent | f5af49217855b3b49a8ecef28e94aa005bd44dfb (diff) | |
download | CMake-f63823ed15827a24923d8ca04bc3d25214de4ad7.zip CMake-f63823ed15827a24923d8ca04bc3d25214de4ad7.tar.gz CMake-f63823ed15827a24923d8ca04bc3d25214de4ad7.tar.bz2 |
Merge topic 'ctestxml-cpu-model-name'
f5af492178 CTest: Report CPU model name to dashboard
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9860
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCTest.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 8f2eb85..829fbf9 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1433,6 +1433,7 @@ void cmCTest::StartXML(cmXMLWriter& xml, bool append) xml.Attribute("VendorID", info.GetVendorID()); xml.Attribute("FamilyID", info.GetFamilyID()); xml.Attribute("ModelID", info.GetModelID()); + xml.Attribute("ModelName", info.GetModelName()); xml.Attribute("ProcessorCacheSize", info.GetProcessorCacheSize()); xml.Attribute("NumberOfLogicalCPU", info.GetNumberOfLogicalCPU()); xml.Attribute("NumberOfPhysicalCPU", info.GetNumberOfPhysicalCPU()); |