From f5af49217855b3b49a8ecef28e94aa005bd44dfb Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Tue, 24 Sep 2024 23:08:54 +0200 Subject: [PATCH] CTest: Report CPU model name to dashboard --- Source/cmCTest.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 8f2eb850d0..829fbf9238 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());