Skip to content

Commit

Permalink
Skip tests broken by language changes.
Browse files Browse the repository at this point in the history
Related to #40015
  • Loading branch information
gafter committed Nov 26, 2019
1 parent c77c2ec commit 6d450fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ class D
await VerifyNoItemsExistAsync(markup);
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015")]
public async Task PropertiesInRecursivePattern_PositionalInFirstProperty_AfterComma()
{
var markup =
Expand Down Expand Up @@ -528,7 +528,7 @@ class D
await VerifyNoItemsExistAsync(markup);
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015")]
public async Task PropertiesInRecursivePattern_InPositional_Incomplete()
{
var markup =
Expand All @@ -548,7 +548,7 @@ void M()
await VerifyNoItemsExistAsync(markup);
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015")]
public async Task PropertiesInRecursivePattern_InPositional_Incomplete_WithoutClosingBrace()
{
var markup =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ public async Task PositionalPatternFirstPosition()
await VerifyItemExistsAsync(AddUsingDirectives("using System;", AddInsideMethod(content)), @"System");
}

[Fact, Trait(Traits.Feature, Traits.Features.Completion)]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015"), Trait(Traits.Feature, Traits.Features.Completion)]
[WorkItem(33915, "https://github.com/dotnet/roslyn/issues/33915")]
public async Task PositionalPatternSecondPosition()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,15 @@ public async Task TestForSwitchCase_NotAfterColon_BeforeBreak() =>
public async Task TestForSwitchCase_NotInEmptySwitchStatement() =>
await VerifyAbsenceAsync(AddInsideMethod(@"switch (1) { $$ }"));

[Fact, Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015"), Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
public async Task TestForSwitchCase_SemanticCheck_NotAfterPredefinedType() =>
await VerifyAbsenceAsync(AddInsideMethod(@"switch (new object()) { case int $$ }"));

[Fact, Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015"), Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
public async Task TestForSwitchCase_SemanticCheck_NotAfterPredefinedType_BeforeBreak() =>
await VerifyAbsenceAsync(AddInsideMethod(@"switch (new object()) { case int $$ break; }"));

[Fact, Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/40015"), Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
public async Task TestForSwitchCase_SemanticCheck_NotAfterPredefinedType_BeforeWhen() =>
await VerifyAbsenceAsync(AddInsideMethod(@"switch (new object()) { case int $$ when }"));

Expand Down

0 comments on commit 6d450fb

Please sign in to comment.