-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wasm] emscripten 2.0.21 introduces failure in System.Runtime.Caching.Tests.dll #53022
Comments
Tagging subscribers to 'arch-wasm': @lewing Issue Details
|
Looks like this issue was introduced between emscripten 2.0.15 and 2.0.16. |
The test fails, because the memory cache is removing cached entries earlier than planned. It happens through this path:
The cache flushes the entries, because |
We use sysconf to determine available memory size in mono. We call On wasm, this wasn't working well before (we are ignoring errno and return value of It was changed here: I also think we have the That led to calculating the memory pressure as 100% in the |
sounds like it entirely safe to treat this as an active issue rather than a true regression then. |
Yes. I am going to use the |
Fixed by #53364 |
The text was updated successfully, but these errors were encountered: