Skip to content

Commit

Permalink
Lower expected object count in gcheapenumerationprofiler test (#106008)
Browse files Browse the repository at this point in the history
  • Loading branch information
clamp03 authored Aug 6, 2024
1 parent 5fb42a4 commit 6b558d9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ HRESULT GCHeapEnumerationProfiler::Shutdown()
return S_OK;
}

if (_objectsCount < 100)
if (_objectsCount < 90)
{
printf("GCHeapEnumerationProfiler::Shutdown: FAIL: Expected at least 100 objects, got %d\n", _objectsCount.load());
printf("GCHeapEnumerationProfiler::Shutdown: FAIL: Expected at least 90 objects, got %d\n", _objectsCount.load());
IncrementFailures();
}

Expand Down Expand Up @@ -272,4 +272,4 @@ extern "C" EXPORT void STDMETHODCALLTYPE EnumerateGCHeapObjectsWithinProfilerReq
instance->IncrementFailures();
return;
}
}
}

0 comments on commit 6b558d9

Please sign in to comment.