Retry transient DynamicDependency Elevated bootstrap flake in Foundation test pass (AB#63230809) - #6730
Open
v-arlysenko wants to merge 5 commits into
Open
Retry transient DynamicDependency Elevated bootstrap flake in Foundation test pass (AB#63230809)#6730v-arlysenko wants to merge 5 commits into
v-arlysenko wants to merge 5 commits into
Conversation
…pass (AB#63230809) DynamicDependency Elevated bootstrap tests intermittently fail on Win10 19044/19045 with MddBootstrapInitialize 0x80270254. Add an opt-in, targeted rerun-on-failure to the shared foundation test path so a transient failure is retried and reported as unreliable instead of failing the PR/official run, without masking genuine regressions. - TestAll.ps1: testdefs may set MaxReruns; a failing TAEF testdef is rerun up to that many times into separate rerun logs (Te.rerun1/2/3.wtl). - DynamicDependency Win32/WinRT testdefs opt in with MaxReruns: 3. - WindowsAppSDK-RunTests-Steps.yml: pass the rerun logs plus useRetryLogic=true and requiredPassRateThreshold=1 to ConvertWttLogToXUnit so failed-then-passed tests are marked unreliable (skipped), while tests that fail every attempt still fail.
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Collaborator
Author
|
/azp run |
|
Azure Pipelines: Successfully started running 2 pipeline(s). 1 pipeline(s) were filtered out due to trigger conditions. |
Collaborator
Author
|
/azp run |
|
Azure Pipelines: Successfully started running 2 pipeline(s). 1 pipeline(s) were filtered out due to trigger conditions. |
agniuks
approved these changes
Sep 1, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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
DynamicDependency Elevated bootstrap tests intermittently fail on Win10 19044/19045 with
MddBootstrapInitialize 0x80270254. This adds an opt-in, targeted rerun-on-failure to the shared Foundation test path, so a transient failure is retried and reported as unreliable instead of failing the PR/official run — without masking genuine regressions.What changed
MaxReruns; a failing TAEF testdef is rerun up to that many times into separate rerun logs (Te.rerun1/2/3.wtl).MaxRerunsis validated and clamped to a safe range when read (PR-feedback follow-up).MaxReruns: 3.useRetryLogic: trueandrequiredPassRateThreshold: 1toConvertWttLogToXUnit, so a failed-then-passed test is marked unreliable (skipped), while a test that fails every attempt still fails the run.Why
Retry is scoped strictly to the two DynamicDependency testdefs via opt-in
MaxReruns; all other tests keep single-attempt behavior. This unblocks Foundation PR/official runs from the known transient bootstrap flake while preserving regression detection.Work item
AB#63230809 — WinAppSDK Foundation tests: DynamicDependency Elevated bootstrap flake on Win10 19044/19045 (MddBootstrapInitialize 0x80270254).