mirror of
https://github.com/openssl/openssl.git
synced 2025-01-24 13:55:42 +08:00
28 lines
527 B
Plaintext
28 lines
527 B
Plaintext
|
# -*- mode: perl; -*-
|
||
|
|
||
|
## SSL test configurations
|
||
|
|
||
|
package ssltests;
|
||
|
|
||
|
our @tests = (
|
||
|
{
|
||
|
name => "default",
|
||
|
server => { },
|
||
|
client => { },
|
||
|
test => { "ExpectedResult" => "Success" },
|
||
|
},
|
||
|
|
||
|
{
|
||
|
name => "verify-cert",
|
||
|
server => { },
|
||
|
client => {
|
||
|
# Don't set up the client root file.
|
||
|
"VerifyCAFile" => undef,
|
||
|
},
|
||
|
test => {
|
||
|
"ExpectedResult" => "ClientFail",
|
||
|
"ClientAlert" => "UnknownCA",
|
||
|
},
|
||
|
},
|
||
|
);
|