Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unskip integration tests #75970

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public override async Task InitializeAsync()
await TestServices.SolutionExplorer.AddProjectAsync(ProjectName, _projectTemplate, LanguageNames.VisualBasic, HangMitigatingCancellationToken);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task UpdateActiveStatementLeafNode()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down Expand Up @@ -78,7 +78,7 @@ End Module
await TestServices.Debugger.CheckExpressionAsync("names(1)", "String", "\"bar\"", HangMitigatingCancellationToken);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task AddTryCatchAroundActiveStatement()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down Expand Up @@ -107,7 +107,7 @@ Catch ex As Exception
await TestServices.EditorVerifier.CurrentLineTextAsync(" End Try", cancellationToken: HangMitigatingCancellationToken);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task EditLambdaExpression()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down Expand Up @@ -164,7 +164,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
Assert.Empty(await TestServices.ErrorList.GetBuildErrorsAsync(HangMitigatingCancellationToken));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task EnCWhileDebuggingFromImmediateWindow()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down Expand Up @@ -227,7 +227,7 @@ End Module
await TestServices.Workspace.WaitForAsyncOperationsAsync(FeatureAttribute.Workspace, cancellationToken);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")]
[IdeFact]
public async Task MultiProjectDebuggingWhereNotAllModulesAreLoaded()
{
await SetupMultiProjectSolutionAsync(HangMitigatingCancellationToken);
Expand All @@ -251,7 +251,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
AssertEx.Empty(await TestServices.ErrorList.GetErrorsAsync(HangMitigatingCancellationToken));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task LocalsWindowUpdatesAfterLocalGetsItsTypeUpdatedDuringEnC()
{
await TestServices.Editor.SetTextAsync(@"
Expand All @@ -275,7 +275,7 @@ End Module
Assert.Equal(("Single", "10"), await TestServices.LocalsWindow.GetEntryAsync(["goo"], HangMitigatingCancellationToken));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task LocalsWindowUpdatesCorrectlyDuringEnC()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down Expand Up @@ -309,7 +309,7 @@ End Module
Assert.Equal(("Long", "444"), await TestServices.LocalsWindow.GetEntryAsync(["lLng"], HangMitigatingCancellationToken));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")]
[IdeFact]
public async Task WatchWindowUpdatesCorrectlyDuringEnC()
{
await TestServices.Editor.SetTextAsync(@"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Dim gibberish As SomeClass
Assert.False(await TestServices.Shell.IsActiveTabProvisionalAsync(HangMitigatingCancellationToken));
}

[IdeTheory(Skip = "https://github.com/dotnet/roslyn/issues/75458"), CombinatorialData]
[IdeTheory, CombinatorialData]
public async Task ObjectBrowserNavigation(bool navigateToObjectBrowser)
{
var globalOptions = await TestServices.Shell.GetComponentModelServiceAsync<IGlobalOptionService>(HangMitigatingCancellationToken);
Expand Down Expand Up @@ -85,7 +85,7 @@ End Class
}
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")]
[IdeFact]
public async Task GoToBaseFromMetadataAsSource()
{
var project = ProjectName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected async Task InitializeWithDefaultSolution()
await TestServices.SolutionExplorer.RestoreNuGetPackagesAsync(ProjectName, HangMitigatingCancellationToken);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")]
[IdeFact]
public async Task OpenCSharpThenVBSolution()
{
await InitializeWithDefaultSolution();
Expand Down
Loading