1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00

Lower expected object count in gcheapenumerationprofiler test (#106008)

This commit is contained in:
Dong-Heon Jung 2024-08-07 05:20:04 +09:00 committed by GitHub
parent 5fb42a458b
commit 6b558d950e
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -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();
}
@ -272,4 +272,4 @@ extern "C" EXPORT void STDMETHODCALLTYPE EnumerateGCHeapObjectsWithinProfilerReq
instance->IncrementFailures();
return;
}
}
}