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

Disable dealocking tests #3211

Merged
merged 1 commit into from
May 5, 2020
Merged
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
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand Down Expand Up @@ -3018,7 +3018,7 @@ public static IEnumerable<object[]> Paint_TestData()
yield return new object[] { singleHorizontalBorderAddedDisplayedDataGridView.Rows[1], new Rectangle(1, 2, 100, 100), new Rectangle(1, 2, 1000, 1000), 1, DataGridViewElementStates.Displayed | DataGridViewElementStates.Displayed, true, false, DataGridViewPaintParts.All };
}

[Theory]
[WinFormsTheory(Skip = "Deadlock, see: https://github.com/dotnet/winforms/issues/3209")]
[MemberData(nameof(Paint_TestData))]
public void DataGridViewRow_Paint_Invoke_Success(DataGridViewRow row, Rectangle clipBounds, Rectangle rowBounds, int rowIndex, DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, DataGridViewPaintParts unused)
{
Expand Down Expand Up @@ -3253,7 +3253,7 @@ public void DataGridViewRow_Paint_InvalidRowIndex_ThrowsArgumentOutOfRangeExcept
}
}

[Theory]
[WinFormsTheory(Skip = "Deadlock, see: https://github.com/dotnet/winforms/issues/3209")]
[MemberData(nameof(Paint_TestData))]
public void DataGridViewRow_PaintCells_Invoke_Success(DataGridViewRow row, Rectangle clipBounds, Rectangle rowBounds, int rowIndex, DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, DataGridViewPaintParts paintParts)
{
Expand Down Expand Up @@ -3342,7 +3342,7 @@ public void DataGridViewRow_PaintCells_InvalidPaintParts_ThrowsInvalidEnumArgume
}
}

[Theory]
[WinFormsTheory(Skip = "Deadlock, see: https://github.com/dotnet/winforms/issues/3209")]
[MemberData(nameof(Paint_TestData))]
public void DataGridViewRow_PaintHeader_Invoke_Success(DataGridViewRow row, Rectangle clipBounds, Rectangle rowBounds, int rowIndex, DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, DataGridViewPaintParts paintParts)
{
Expand Down