Disable TypingHelpDirectiveWorks for legacy completion#36190
Merged
sharwell merged 1 commit intodotnet:masterfrom Jun 6, 2019
Merged
Disable TypingHelpDirectiveWorks for legacy completion#36190sharwell merged 1 commit intodotnet:masterfrom
sharwell merged 1 commit intodotnet:masterfrom
Conversation
This test is flaky in legacy completion, but legacy completion is slated for removal so the test failures were not fully investigated.
jasonmalinowski
approved these changes
Jun 5, 2019
Member
jasonmalinowski
left a comment
There was a problem hiding this comment.
During the investigation, I observed that each of the failure cases was preceded by an exception thrown in ChainTaskAndNotifyControllerWhenFinished in the awaiter's GetResult on this line:
Thanks for doing this investigation. I was about to ask "why are we sure this isn't a product bug?" but if the answer is "yes, it seems to be a product bug in code we're not maintaining", great!
Contributor
Author
|
@jasonmalinowski Yeah, I narrowed it down to legacy completion scenarios fairly quickly. Then I did a time-boxed investigation to see if I could correct it rather than skip it. I wasn't able to find a working solution in a reasonable amount of time, so I included what I found out so far and proceeded with a targeted skip. |
tmat
approved these changes
Jun 6, 2019
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.
This test is flaky in legacy completion, but legacy completion is slated for removal so the test failures were not fully investigated.
This change addresses failures of this test with the following message:
During the investigation, I observed that each of the failure cases was preceded by an exception thrown in
ChainTaskAndNotifyControllerWhenFinishedin the awaiter'sGetResulton this line:roslyn/src/EditorFeatures/Core/Implementation/IntelliSense/ModelComputation.cs
Line 150 in c78f1e5
The failure does not appear to be caused by an unhandled exception, but rather the exception appears to be an observable symptom of a race condition which occurs only when this test is going to fail.