From: Jeremy Barton Date: Wed, 18 Sep 2019 16:37:51 +0000 (-0700) Subject: Fix the filename used by the VerifyCrlCache test (dotnet/corefx#41173) X-Git-Tag: submit/tizen/20210909.063632~11031^2~441 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=744512d424f348ec11e143e72796ed7728b44bd7;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix the filename used by the VerifyCrlCache test (dotnet/corefx#41173) The VerifyCrlCache test, which is a manual test, is looking for the old cache key. This change updates it to the new cache key, and makes the test pass again. Commit migrated from https://github.com/dotnet/corefx/commit/395f42ffa645efd067fd790712b48061c0236523 --- diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/X509FilesystemTests.Unix.cs b/src/libraries/System.Security.Cryptography.X509Certificates/tests/X509FilesystemTests.Unix.cs index 3f43a9f..c597ece 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/X509FilesystemTests.Unix.cs +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/X509FilesystemTests.Unix.cs @@ -669,8 +669,8 @@ namespace System.Security.Cryptography.X509Certificates.Tests } } - // `openssl crl -in [MicrosoftDotComRootCrlPem] -noout -hash`.crl - private const string MicrosoftDotComRootCrlFilename = "b204d74a.crl"; + // `openssl crl -in [MicrosoftDotComRootCrlPem] -noout -hash`.[SHA-256(CDPURL)[0..4].ToHex()].crl + private const string MicrosoftDotComRootCrlFilename = "b204d74a.daa2bce5.crl"; // This CRL was downloaded 2015-08-31 20:31 PDT // It is valid from Jun 17 00:00:00 2015 GMT to Sep 30 23:59:59 2015 GMT