crypto/x509: disable SCG test with system validation.

On Windows, CryptoAPI is finding an alternative validation path. Since
this is a little non-deterministic, this change disables that test
when using system validation.

R=golang-dev
CC=golang-dev
https://golang.org/cl/7313068
This commit is contained in:
Adam Langley 2013-02-09 13:51:39 -05:00
parent 6600092527
commit e0791a3adf
1 changed files with 3 additions and 0 deletions

View File

@ -164,6 +164,9 @@ var verifyTests = []verifyTest{
roots: []string{comodoRoot},
currentTime: 1360431182,
// CryptoAPI can find alternative validation paths so we don't
// perform this test with system validation.
systemSkip: true,
expectedChains: [][]string{
{"mega.co.nz", "EssentialSSL CA", "COMODO Certification Authority"},
},