Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 397d986

Browse files
committed
Disable X509Store_FiltersDuplicateOnLoad on CI jobs with NTFS drives
1 parent ddd5e57 commit 397d986

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/System.Security.Cryptography.X509Certificates/tests/X509FilesystemTests.Unix.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace System.Security.Cryptography.X509Certificates.Tests
1515
[Collection("X509Filesystem")]
1616
public static class X509FilesystemTests
1717
{
18-
// #9293: Our Fedora23 CI machines use NTFS for "tmphome", which causes our filesystem permissions checks to fail.
18+
// #9293: Our Fedora23 and Ubuntu1610 CI machines use NTFS for "tmphome", which causes our filesystem permissions checks to fail.
1919
private static bool IsReliableInCI { get; } = !PlatformDetection.IsFedora23 && !PlatformDetection.IsUbuntu1610;
2020

2121
[Fact]
@@ -576,7 +576,7 @@ private static void X509Store_MultipleObjects(bool matchCase)
576576
});
577577
}
578578

579-
[Fact]
579+
[ConditionalFact(nameof(IsReliableInCI))]
580580
[OuterLoop( /* Alters user/machine state */)]
581581
private static void X509Store_FiltersDuplicateOnLoad()
582582
{

0 commit comments

Comments
 (0)