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

[iOS/tvOS/MacCatalyst] Disable some of the library tests due to failures #56074

Merged
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
09239c9
Disable some of System.Diagnostics.Tracing.Tests tests due to failures
MaximLipnin Jul 21, 2021
38224c8
Disable ImageTests.FromFile_NullFileName_ThrowsArgumentNullException …
MaximLipnin Jul 21, 2021
146049d
Disable System.Runtime.Tests.JitInfoTests.JitInfoIsPopulated test
MaximLipnin Jul 21, 2021
99b22ae
Disable System.Drawing.Tests.ImageTests.FromFile_LongSegment_ThrowsEx…
MaximLipnin Jul 21, 2021
71f614c
Exclude System.Runtime.Experimental.Tests test suite due to an app crash
MaximLipnin Jul 21, 2021
48ed88e
Disable System.Drawing.Tests.BrushTests.SetNativeBrush_Brush_Success
MaximLipnin Jul 21, 2021
3c7d0c4
Disable some of System.Tests.OperatingSystemTests test on MacCatalyst
MaximLipnin Jul 21, 2021
3d78e69
Disable System.Text.Json.SourceGeneration.Tests on MacCatalyst due to…
MaximLipnin Jul 21, 2021
0ffee55
Merge branch 'main' into disable_tests_on_ios_tvos_maccatalyst
MaximLipnin Jul 21, 2021
49eb711
Disable System.Drawing.Drawing2D.Tests.HatchBrushTests.Ctor_InvalidHa…
MaximLipnin Jul 21, 2021
f697280
Disable System.Drawing.Tests.ImageTests.FromFile_NoSuchFile_ThrowsFil…
MaximLipnin Jul 21, 2021
efa5866
Merge branch 'main' into disable_tests_on_ios_tvos_maccatalyst
MaximLipnin Jul 21, 2021
5aa66f1
Use IsDrawingSupported helper for System.Drawing.Common tests
MaximLipnin Jul 21, 2021
9385989
Merge branch 'main' into disable_tests_on_ios_tvos_maccatalyst
MaximLipnin Jul 22, 2021
8864f7d
Annotate the entire System.Drawing.Tests.ImageTests class with Platfo…
MaximLipnin Jul 22, 2021
e5d8808
Remove individual method annotations in favor of class annotation
MaximLipnin Jul 22, 2021
a5660f2
Move back conditional theory attribute for System.Drawing.Tests.Image…
MaximLipnin Jul 22, 2021
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
Next Next commit
Disable some of System.Diagnostics.Tracing.Tests tests due to failures
  • Loading branch information
MaximLipnin committed Jul 21, 2021
commit 09239c9245259bc83fb0af7af437d014a73bc4ba
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace BasicEventSourceTests
public class ActivityTracking
{
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/56073", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
public void StartStopCreatesActivity()
{
using ActivityEventListener l = new ActivityEventListener();
Expand All @@ -27,6 +28,7 @@ public void StartStopCreatesActivity()
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/56073", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
public async Task ActivityFlowsAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand Down Expand Up @@ -75,6 +77,7 @@ private async Task YieldTwoActivitiesDeep(ActivityEventSource es)
// the future we might decide it wasn't even desirable to begin with.
// Compare with SetCurrentActivityIdAfterEventDoesNotFlowAsync below.
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/56073", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
public async Task SetCurrentActivityIdBeforeEventFlowsAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand All @@ -100,6 +103,7 @@ public async Task SetCurrentActivityIdBeforeEventFlowsAsync()
// the future we might decide it wasn't even desirable to begin with.
// Compare with SetCurrentActivityIdBeforeEventFlowsAsync above.
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/56073", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
public async Task SetCurrentActivityIdAfterEventDoesNotFlowAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand Down