From dd4e7b18f7d3a4366e25d6499295e7600cf3a8d3 Mon Sep 17 00:00:00 2001 From: mdh1418 Date: Mon, 8 Jul 2024 14:15:19 -0400 Subject: [PATCH] Lower expected object count --- .../gcheapenumerationprofiler/gcheapenumerationprofiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/profiler/native/gcheapenumerationprofiler/gcheapenumerationprofiler.cpp b/src/tests/profiler/native/gcheapenumerationprofiler/gcheapenumerationprofiler.cpp index 6f7a19ad315db6..ff175943e1d24e 100644 --- a/src/tests/profiler/native/gcheapenumerationprofiler/gcheapenumerationprofiler.cpp +++ b/src/tests/profiler/native/gcheapenumerationprofiler/gcheapenumerationprofiler.cpp @@ -78,9 +78,9 @@ HRESULT GCHeapEnumerationProfiler::Shutdown() return S_OK; } - if (_objectsCount < 500) + if (_objectsCount < 100) { - printf("GCHeapEnumerationProfiler::Shutdown: FAIL: Expected at least 500 objects, got %d\n", _objectsCount.load()); + printf("GCHeapEnumerationProfiler::Shutdown: FAIL: Expected at least 100 objects, got %d\n", _objectsCount.load()); _failures++; }