-
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
Test timeout: BeginReceiveFromV6BoundToSpecificV6_Success #58452
Comments
Tagging subscribers to this area: @dotnet/ncl Issue DetailsTest type: Failures 3/12-8/31 (incl. PRs):
Failure:
|
this looks pretty old. Do we have any recent failures @rzikm? |
Triage: @antonfirsov please look at failure history. If it is not frequent, we should punt it into Future or 8.0 (based on frequency). |
I don't see any recent failures, so we can probably close this. |
I see only 2 failures (incl. PRs) which passed on rerun: Failures 2022/3/27-7/21 (incl. PRs):
let failedTests = (methodName : string, includePR : bool, messageSubstr: string, includePassedOnRerun : bool) {
cluster('engsrvprod.kusto.windows.net').database('engineeringdata').AzureDevOpsTests
| where TestName startswith "System.Net"
and includePassedOnRerun or (Outcome == 'Failed')
| extend startOfTestName = indexof_regex(TestName, @"[^.]+$")
| extend Method = substring(TestName, startOfTestName)
| extend Type = substring(TestName, 0, startOfTestName - 1)
| project-away startOfTestName
| where Method == methodName
| where Message contains messageSubstr
| distinct JobId, WorkItemId, Message, StackTrace, Method, Type, Arguments, Outcome
| join kind=inner (cluster('engsrvprod.kusto.windows.net').database('engineeringdata').Jobs
| where ((Branch == 'refs/heads/main') or (Branch == 'refs/heads/master') or (includePR and (Source startswith "pr/")))
| where Type startswith "test/functional/cli/"
and not(Properties contains "runtime-staging")
| summarize arg_max(Finished, Properties, Type, Branch, Source, Started, QueueName) by JobId
| project-rename JobType = Type) on JobId
| extend PropertiesJson = parse_json(Properties)
| extend OS = replace_regex(tostring(PropertiesJson.operatingSystem), @'\((.*)\).*|([^\(].*)', @'\1\2')
| extend Runtime = iif(PropertiesJson.runtimeFlavor == "mono", "Mono", iif(PropertiesJson.DefinitionName contains "coreclr", "CoreCLR", ""))
| extend TargetBranch = extractjson("$.['System.PullRequest.TargetBranch']", Properties)
| extend Architecture = PropertiesJson.architecture
| extend Scenario = iif(isempty(PropertiesJson.scenario), "--", PropertiesJson.scenario)
//| extend DefinitionName = PropertiesJson.DefinitionName
| project-away PropertiesJson
};
failedTests('BeginReceiveFromV6BoundToSpecificV6_Success', true, '', true); |
Given the low frequency, moving to Future. |
I also see one failure on |
triage: we should look for recent failures and close if it looks stable. |
No failures in last 15 days (can't query timeouts for longer period). #80715 should improve these tests. Closing for now, if it comes back, we can reopen. |
Test type:
System.Net.Sockets.Tests.DualModeConnectionlessBeginReceiveFrom
Failures 2021/3/12-8/31 (incl. PRs):
Failure:
The text was updated successfully, but these errors were encountered: