Disable failing ValidateToStringUsingWhoami/ValidateToString tests (dotnet/corefx...
authorStephen Toub <stoub@microsoft.com>
Sun, 6 Jan 2019 23:00:34 +0000 (18:00 -0500)
committerGitHub <noreply@github.com>
Sun, 6 Jan 2019 23:00:34 +0000 (18:00 -0500)
* Disable failing ValidateToStringUsingWhoami test

* Also disable ValidateToString

It similarly assumes the sddl begins with S-1-5-, which mine does not.

Commit migrated from https://github.com/dotnet/corefx/commit/2bf00161a1e89db28d62330043165d7c30da25b3

src/libraries/System.Security.Principal.Windows/tests/SecurityIdentifierTests.cs

index 9ed06a03f2dacacaaf2d330ac85d6baa379b5e13..1de5beb4f58d1f079ff7c1adcd6c3230299c1544 100644 (file)
@@ -17,7 +17,8 @@ public class SecurityIdentifierTests
             Assert.NotNull(identity.User);
         }
     }
-
+    
+    [ActiveIssue(34395)]
     [Fact]
     public void ValidateToString()
     {
@@ -40,6 +41,7 @@ public class SecurityIdentifierTests
         Assert.All(parts, part => uint.TryParse(part, out uint _));
     }
 
+    [ActiveIssue(34395)]
     [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer), nameof(PlatformDetection.IsNotWindowsServerCore))]
     public void ValidateToStringUsingWhoami()
     {