Skip to content

Commit

Permalink
Lower expected object count
Browse files Browse the repository at this point in the history
  • Loading branch information
mdh1418 committed Jul 8, 2024
1 parent 5458ce5 commit dd4e7b1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
}

Expand Down

0 comments on commit dd4e7b1

Please sign in to comment.