From 3fd0433bd035653662635d4a70a80b65ff8da4d1 Mon Sep 17 00:00:00 2001
From: amete <serhanmete@gmail.com>
Date: Fri, 20 Apr 2018 14:16:52 +0200
Subject: [PATCH] Halve the loop to increase sensitivity just to be cautious.

Former-commit-id: 51bc550d816e49f99ce338a7d223120736bf1965
---
 .../PerfMonTests/src/PerfMonTestCpuCruncherAlg.cxx              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Control/PerformanceMonitoring/PerfMonTests/src/PerfMonTestCpuCruncherAlg.cxx b/Control/PerformanceMonitoring/PerfMonTests/src/PerfMonTestCpuCruncherAlg.cxx
index 21bef15cb02af..b826054aa0415 100644
--- a/Control/PerformanceMonitoring/PerfMonTests/src/PerfMonTestCpuCruncherAlg.cxx
+++ b/Control/PerformanceMonitoring/PerfMonTests/src/PerfMonTestCpuCruncherAlg.cxx
@@ -112,7 +112,7 @@ StatusCode CpuCruncherAlg::execute()
   auto start = std::chrono::system_clock::now();
 
   while (std::chrono::system_clock::now() - start < chrono_interval)
-    test_result += burn(10000);
+    test_result += burn(5000);
 
   ATH_MSG_DEBUG ( "Test result sum is " << test_result );
 
-- 
GitLab