Skip logs pipeline test on Windows. (#2256)
authorJustin Anderson <jander-msft@users.noreply.github.com>
Thu, 6 May 2021 20:07:13 +0000 (13:07 -0700)
committerGitHub <noreply@github.com>
Thu, 6 May 2021 20:07:13 +0000 (20:07 +0000)
src/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventLogsPipelineUnitTests.cs

index 6bb7028100c4127f84046c99be629ff2fbace54c..a72de9eeead31eeb2b61ff1099393d697b04950b 100644 (file)
@@ -31,9 +31,14 @@ namespace Microsoft.Diagnostics.Monitoring.EventPipe.UnitTests
             _output = output;
         }
 
-        [Fact]
+        [SkippableFact]
         public async Task TestLogs()
         {
+            if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
+            {
+                throw new SkipTestException("https://github.com/dotnet/diagnostics/issues/2234");
+            }
+
             var outputStream = new MemoryStream();
 
             await using (var testExecution = StartTraceeProcess("LoggerRemoteTest"))