Nop LongProcessNamesAreSupported test on Alpine (dotnet/corefx#37350)
authorSantiago Fernandez Madero <safern@microsoft.com>
Thu, 2 May 2019 06:28:49 +0000 (23:28 -0700)
committerViktor Hofer <viktor.hofer@microsoft.com>
Thu, 2 May 2019 06:28:49 +0000 (08:28 +0200)
Commit migrated from https://github.com/dotnet/corefx/commit/3728c9618debe640c22d7469fe4aa937f4a774b7

src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs

index 319e179149fd39133f2bedf09b9370200618c99c..8bd402108050b7401b5d07067eb3806fb7d9ef01 100644 (file)
@@ -1898,6 +1898,11 @@ namespace System.Diagnostics.Tests
         [Fact]
         public void LongProcessNamesAreSupported()
         {
+            if (PlatformDetection.IsAlpine)
+            {
+                return; // https://github.com/dotnet/corefx/issues/37054
+            }
+
             string programPath = GetProgramPath("sleep");
 
             if (programPath == null)