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:
parent
5fb42a458b
commit
6b558d950e
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue