From f0c5993d577441a9af5c40e4ca77b7c3780d2877 Mon Sep 17 00:00:00 2001 From: Tom McDonald Date: Sat, 25 Sep 2021 20:37:54 -0700 Subject: [PATCH] Disabling TestLogsAllCategoriesDefaultLevel on windows due to intermittent failures --- .../EventLogsPipelineUnitTests.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventLogsPipelineUnitTests.cs b/src/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventLogsPipelineUnitTests.cs index 03d7a0cc68..806ce4b655 100644 --- a/src/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventLogsPipelineUnitTests.cs +++ b/src/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventLogsPipelineUnitTests.cs @@ -63,9 +63,14 @@ public async Task TestLogsAllCategoriesAllLevels() /// /// Test that log events at or above the default level are collected. /// - [Fact] + [SkippableFact] public async Task TestLogsAllCategoriesDefaultLevel() { + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) + { + throw new SkipTestException("https://github.com/dotnet/diagnostics/issues/2541"); + } + using Stream outputStream = await GetLogsAsync(settings => { settings.UseAppFilters = false;