From 36d7541558e50f40141c787c9e5a6c993a437e8e Mon Sep 17 00:00:00 2001 From: "Roscoe A. Bartlett" Date: Thu, 16 Jan 2025 08:24:52 -0500 Subject: [PATCH] Increase default maxRcpRawObjAccessRatio from 13.5 to 20.0 (#8648, #13728) That should be high enough to avoid every random failure of this check ever observed in Trilinos PR testing. It is debatable if a test such as this should be run in all builds or in just dedicated performance builds. (The default timing ratios are very loose.) We just want to make sure these tests are not broken in every build so that this test will be able to run in performance builds. Signed-off-by: Roscoe A. Bartlett --- .../core/test/MemoryManagement/RCP_Performance_UnitTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/teuchos/core/test/MemoryManagement/RCP_Performance_UnitTests.cpp b/packages/teuchos/core/test/MemoryManagement/RCP_Performance_UnitTests.cpp index 3cd208618580..245c6d71c8d8 100644 --- a/packages/teuchos/core/test/MemoryManagement/RCP_Performance_UnitTests.cpp +++ b/packages/teuchos/core/test/MemoryManagement/RCP_Performance_UnitTests.cpp @@ -30,7 +30,7 @@ double maxRcpRawAdjustRefCountRatio = 100.0; #ifdef HAVE_TEUCHOSCORE_CXX11 double maxRcpSpAdjustRefCountRatio = 5.0; #endif -double maxRcpRawObjAccessRatio = 13.5; +double maxRcpRawObjAccessRatio = 20.0; // See trilinos/Trilinos#13728 const int intPrec = 8; const int dblPrec = 6;