Frequency:
| Day |
Run |
| 3/27-7/22 |
|
| 7/15 |
Official run |
let failedTests = (testNameSubstring : string, methodName : string, includePR : bool, messageSubstr: string, includePassedOnRerun : bool) {
cluster('engsrvprod.kusto.windows.net').database('engineeringdata').AzureDevOpsTests
| where TestName contains testNameSubstring
| where 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 (methodName == '') or (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('', 'UpdateArray_HighConcurrency', true, '', true);
Build
NullReferenceException at System.Threading.Tasks.Task.AddToList[Task](Task item, List`1& list, Int32 initSize)
First instance of the failure.
Runfo Tracking Issue: system.collections.immutable.tests.immutableinterlockedtests.updatearray_highconcurrency
| Build |
Definition |
Kind |
Run Name |
Build Result Summary
| Day Hit Count |
Week Hit Count |
Month Hit Count |
| 0 |
0 |
0 |
Frequency:
Build
NullReferenceException at System.Threading.Tasks.Task.AddToList[Task](Task item, List`1& list, Int32 initSize)First instance of the failure.
Runfo Tracking Issue: system.collections.immutable.tests.immutableinterlockedtests.updatearray_highconcurrency
Build Result Summary