From 799bd4ccff89a21f7cba915f7fbf34b82093ee9b Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Thu, 5 Dec 2019 09:04:12 -0800 Subject: [PATCH] Skip failing C# REPL integration tests. After CI image was updated with 16.4 Preview 5 some REPL tests started failing consistently. https://github.com/dotnet/roslyn/issues/40160 --- .../CSharp/CSharpInteractiveCommands.cs | 10 +++++----- .../CSharp/CSharpInteractiveDirectives.cs | 2 +- .../CSharp/CSharpReplClassification.cs | 2 +- .../CSharp/CSharpReplIdeFeatures.cs | 16 ++++++++-------- .../CSharp/CSharpReplIntellisense.cs | 14 +++++++------- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpInteractiveCommands.cs b/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpInteractiveCommands.cs index 8dd1fa58239..f10cd86cbe7 100644 --- a/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpInteractiveCommands.cs +++ b/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpInteractiveCommands.cs @@ -46,7 +46,7 @@ public void VerifyMaybeExecuteInput() VisualStudio.InteractiveWindow.WaitForLastReplOutput("5"); } - [WpfFact] + [WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/40160")] public void VerifyNewLineAndIndent() { VisualStudio.InteractiveWindow.InsertCode("3 + "); @@ -73,7 +73,7 @@ public void VerifyForceNewLineAndIndent() VisualStudio.InteractiveWindow.Verify.ReplPromptConsistency("", "6"); } - [WpfFact] + [WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/40160")] public void VerifyCancelInput() { VisualStudio.InteractiveWindow.InsertCode("1 + 4"); @@ -82,7 +82,7 @@ public void VerifyCancelInput() VisualStudio.InteractiveWindow.Verify.LastReplInput(string.Empty); } - [WpfFact] + [WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/40160")] public void VerifyUndoAndRedo() { VisualStudio.InteractiveWindow.ClearReplText(); @@ -95,7 +95,7 @@ public void VerifyUndoAndRedo() VisualStudio.InteractiveWindow.WaitForLastReplOutput("6"); } - [WpfFact] + [WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/40160")] public void CutDeletePasteSelectAll() { ClearInteractiveWindow(); @@ -132,7 +132,7 @@ public void CutDeletePasteSelectAll() // of these tests and convert them to unit-tests. // --> //