[ci-scan] Skip PlatformHandlerTest_Cookies_Http2 (WinHttpException 12030) - #127993
Merged
kotlarmilos merged 4 commits intoMay 12, 2026
Merged
Conversation
Add [ActiveIssue] to disable PlatformHandlerTest_Cookies_Http2 tests which fail with WinHttpException Error 12030 (connection terminated abnormally) across NativeAOT and regular Windows builds. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
Tagging subscribers to this area: @karelz, @dotnet/ncl |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds an ActiveIssue annotation to skip the WinHttpHandler HTTP/2 cookie functional test class, preventing CI failures in the affected configuration while the linked issue is investigated/resolved.
Changes:
- Annotates
PlatformHandlerTest_Cookies_Http2with[ActiveIssue("https://github.com/dotnet/runtime/issues/126867")]to skip the suite under the active known issue.
Show a summary per file
| File | Description |
|---|---|
src/libraries/System.Net.Http.WinHttpHandler/tests/FunctionalTests/PlatformHandlerTest.cs |
Marks the WinHttpHandler HTTP/2 cookie test class as skipped via ActiveIssue tied to runtime issue #126867. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
rzikm
approved these changes
May 11, 2026
…s_Http2 Co-authored-by: kotlarmilos <11523312+kotlarmilos@users.noreply.github.com>
Member
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Member
|
@rzikm This looks like a test / product bug so I suggest disabling test. |
kotlarmilos
enabled auto-merge (squash)
May 12, 2026 17:40
kotlarmilos
deleted the
ci-scan/skip-winhttp-cookies-http2-126867-26ec7ab47b3447c2
branch
May 12, 2026 19:16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Mute
PlatformHandlerTest_Cookies_Http2tests that fail withWinHttpException : Error 12030(connection terminated abnormally) on Windows x64.Linked KBE: #126867
Changes
Adds
[ActiveIssue("https://github.com/dotnet/runtime/issues/126867", typeof(PlatformDetection), nameof(PlatformDetection.IsWindows), nameof(PlatformDetection.IsX64Process))]at the class level onPlatformHandlerTest_Cookies_Http2inPlatformHandlerTest.cs, scoped to Windows x64 only.Reasoning
PlatformHandlerTest_Cookies_Http2cookie tests match the KBE.WinHttpException : Error 12030/WINHTTP_CALLBACK_STATUS_REQUEST_ERROR.Failing legs
runtime-nativeaot-outerloop(def 265):windows-x64NativeAOT SizeOptmainNote
This PR was generated by an automated CI scan workflow using GitHub Copilot.