From 3ae3de70c401588801bf55d9e9f3458ff21d5b87 Mon Sep 17 00:00:00 2001 From: danmosemsft Date: Tue, 4 Sep 2018 13:30:04 -0700 Subject: [PATCH] Make flaky serialport test OuterLoop --- src/System.IO.Ports/tests/SerialPort/GetPortNames.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/System.IO.Ports/tests/SerialPort/GetPortNames.cs b/src/System.IO.Ports/tests/SerialPort/GetPortNames.cs index d366646c2369..d8c621b91ae0 100644 --- a/src/System.IO.Ports/tests/SerialPort/GetPortNames.cs +++ b/src/System.IO.Ports/tests/SerialPort/GetPortNames.cs @@ -19,6 +19,7 @@ public class GetPortNames : PortsTest /// Check that all ports either open correctly or fail with UnauthorizedAccessException (which implies they're already open) /// [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] + [OuterLoop] // Occasionally flaky on UAP: https://github.com/dotnet/corefx/issues/32077 private void OpenEveryPortName() { foreach (string portName in SerialPort.GetPortNames())