From 05ac6d8da505db4c825f2e376eb568e4ba78b55d Mon Sep 17 00:00:00 2001
From: Philippe Canal <pcanal@fnal.gov>
Date: Mon, 12 Apr 2021 10:49:03 -0500
Subject: [PATCH] Reduce the number of iteration of testInterpreterLock.

This test is also 'stressing' the interpreter and in particular the increase in the number of symbols.  This leads to a noticeable reduction
of the speed of the test (or more exactly the loading/setting up of the test).  In addition some of the nightly run on VM which can
lead to performance variance (at least on this test) of a factor 4.  In a good day on one of 'failing' vm, the 100 iterations takes 400s,
during the nightlies it oftens takes 800s to 1000s ... the timeout limit is 1200s, so it is reached from time to time.
---
 core/thread/test/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/thread/test/CMakeLists.txt b/core/thread/test/CMakeLists.txt
index 023115a842c..c135132d2a9 100644
--- a/core/thread/test/CMakeLists.txt
+++ b/core/thread/test/CMakeLists.txt
@@ -12,4 +12,4 @@ endif()
 
 ROOT_ADD_GTEST(testTThreadedObject testTThreadedObject.cxx LIBRARIES Hist)
 
-ROOT_ADD_GTEST(testInterpreterLock testInterpreterLock.cxx LIBRARIES Imt REPEATS 100)
+ROOT_ADD_GTEST(testInterpreterLock testInterpreterLock.cxx LIBRARIES Imt REPEATS 50)
-- 
GitLab