-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
System.Text.Json.Serialization.Tests.StreamTests_Async.HandleCollectionsAsync failing in runtime-extra-platforms #65021
Comments
Tagging subscribers to this area: @dotnet/area-system-text-json Issue DetailsRunfo Creating Tracking Issue (data being generated)
|
Failed in build 1599183 Diff: ebcd332...56fcb74 |
This is hitting a lot on Server 2022 (same with #65053). We will need to update the main runtime pipeline to use a Server 2022 queue soon. @eiriktsarpalis can we get someone to investigate soon? |
Related to #59678 and #35927. The same issue has been popping up in other platforms as well and we have already disabled the test for some of these. I noticed on Kusto that similar failures have been occurring in other queues: let crashes =
TestResults
| join kind=inner WorkItems on WorkItemId
| join kind=inner Jobs on JobId
//| where Started >= datetime(2022-01-01)
| where Result == "Fail"
| where Method == "HandleCollectionsAsync";
let min_t = toscalar(crashes | summarize min(Started));
let max_t = toscalar(crashes | summarize max(Started));
crashes
| make-series num=count() on Started in range(min_t, max_t, 1d) by QueueName
| render timechart But nothing as prominent as Server 2022. This particular test has been giving us trouble historically, but issues have been hard to diagnose because it's not really a unit test -- it's doing too many things. I think we should just disable it completely on Windows to unblock rollout of the new queue. Longer term we should break up this test into real unit tests for easier diagnosis. cc @layomia |
Could this be related to the memory corruption issue reported here? #59678 |
We've not had any more hits on this. It was probably the memory corruption issue. |
Runfo Tracking Issue: system.text.json.serialization.tests.streamtests_async.handlecollectionsasync
Build Result Summary
The text was updated successfully, but these errors were encountered: