Skip to content

Commit 1f626be

Browse files
authored
Disable ImportWithPasswordOrFileName_IterationCountLimitExceeded on 32-bit CPUs (#105455)
- we encountered OOM errors on arm32 Android CI
1 parent 7102706 commit 1f626be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Security.Cryptography/tests/X509Certificates/PfxIterationCountTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void Import_IterationCountLimitExceeded_Throws(string name, string passwo
6464
Assert.Contains(FwlinkId, ce.Message);
6565
}
6666

67-
[ConditionalTheory]
67+
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.Is64BitProcess))]
6868
[MemberData(nameof(GetCertsWith_IterationCountExceedingDefaultLimit_MemberData))]
6969
public void ImportWithPasswordOrFileName_IterationCountLimitExceeded(string name, string password, bool usesPbes2, byte[] blob, long iterationCount, bool usesRC2)
7070
{

0 commit comments

Comments
 (0)