Ankit Jain
Ankit Jain
Failures per Runfo - [last 30 days](https://runfo.azurewebsites.net/search/tests/?q=started%3A%7E30+definition%3Aruntime+name%3A%22system.threading.tasks.dataflow.tests+work+item%22): Day | Run | Details -- | -- | -- 8/4 | **Rolling run** AM - extra-platforms | [Console log](https://helixre107v0xdeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-heads-main-7c8a5fbf491f4569a6/System.Threading.Tasks.Dataflow.Tests/1/console.7ef486be.log?%3Fhelixlogtype%3Dresult) - Debian.10.Arm32.Open 8/4...
## 1. Fix random HotReload test failures Some of the hot reload tests fail randomly because they call the updated methods too early. The tests used `Thread.Sleep(3000)` to wait for...
Failure: ``` [xUnit.net 00:39:52.49] DebuggerTests.HotReloadTests.DebugHotReloadMethodUnchanged [FAIL] Failed DebuggerTests.HotReloadTests.DebugHotReloadMethodUnchanged [10 ms] Error Message: : Expected Ok result but got [Result: IsOk: False, IsErr: True, Value: , Error: { "result": { "type":...
Ideas that we can try: For build time: - [x] Compile bitcode files, and use the .o files for the linking step (https://github.com/dotnet/runtime/issues/50285) (assigned: @radical) - [ ] `WasmDedup=true` -...
[Log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-69087-merge-52cc4355e52e420593/chrome-DebuggerTests.BreakpointTests/1/console.60e4c3cf.log?helixlogtype=result): ``` Failed DebuggerTests.BreakpointTests.JSConditionalBreakpoint(condition: "0.0", line_bp: 79, column_bp: 3, line_expected: 80, column_expected: 11) [52 ms] Error Message: System.IndexOutOfRangeException : Index was outside the bounds of the array. Stack Trace: at...
Hit on a unrelated PR https://github.com/dotnet/runtime/pull/66017: [Build](https://dev.azure.com/dnceng/public/_build/results?buildId=1638250&view=logs&j=2cb5cbbb-10b2-57f5-cb06-88ab02df11cd&t=8e3b5183-1166-552f-0d9e-c49b4956b6ef), and [log](https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-66017-merge-132837ce1e43407e91/DebuggerTests.BreakpointTests/1/console.e4afca2b.log?sv=2019-07-07&se=2022-03-21T19%3A20%3A12Z&sr=c&sp=rl&sig=zH%2BUvOs2InlxJdkut7MTmfjmWDJ90WDA5CwKGkKCeac%3D). ``` [19:28:59] info: Inspector-88[0] console.warning: [19:28:59] info: Inspector-88[0] console.warning: Unhandled Exception: [19:28:59] info: Inspector-88[0] console.warning: System.NullReferenceException: Object reference not set to...
1. `DotNetCliExecutor` uses `SynchronousProcessOutputLoggerWithDiagnoser`, which reads stdout (only) synchronously, and once it gets `AfterAll` signal, it stops reading. But this means that we miss any output after that line, which...
#### Describe the bug @tfenise is seeing broken behavior of `StringComparer.CurrentCultureIgnoreCase.GetHashCode` with `try.dot.net`, which is not reproducible with `net6.0`, or `net7.0`. I [think](https://github.com/dotnet/runtime/issues/70441#issuecomment-1175360126) this might be due to `try.dot.net` using...
For the WASM leg of CI, we get `System.Reflection.Tests.zip` from https://netcorenativeassets.blob.core.windows.net/resource-packages/external/wasm/System.Reflection.Extensions.Tests.zip . But those tests are very old - from `Jun 26 2020` to be exact. 1. Is there a...
`OuterLoop`, and `SkipOnPlatform` attributes conflict, and don't work correctly when used together
Consider https://github.com/dotnet/runtime/blob/978df67ced885aeca5f7e75379451bc1a57cc219/src/libraries/System.Net.WebSockets/tests/WebSocketCreateTest.cs#L40-L45 ```csharp [OuterLoop("Uses external servers")] [Theory] [MemberData(nameof(EchoServers))] [SkipOnPlatform(TestPlatforms.Browser, "System.Net.Sockets is not supported on this platform.")] [ActiveIssue("https://github.com/dotnet/runtime/issues/34690", TestPlatforms.Windows, TargetFrameworkMonikers.Netcoreapp, TestRuntimes.Mono)] public async Task WebSocketProtocol_CreateFromConnectedStream_CanSendReceiveData(Uri echoUri) ``` This has both `OuterLoop`,...