diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-03-03 15:34:51 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-03-03 15:34:51 +0000 |
commit | 4b8dd2d4c4098cfde70a70326ae5035eb53214b3 (patch) | |
tree | 76f7133e87819e174b535de51c5266b8d7f3e96b /src/tls_test.c | |
parent | a75a28f34b20739a8cb39c382fd246c01126ef22 (diff) | |
download | gnutls-4b8dd2d4c4098cfde70a70326ae5035eb53214b3.tar.gz |
some fixes in tests
Diffstat (limited to 'src/tls_test.c')
-rw-r--r-- | src/tls_test.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tls_test.c b/src/tls_test.c index 4e6c00eb9c..f13c3dda22 100644 --- a/src/tls_test.c +++ b/src/tls_test.c @@ -81,13 +81,15 @@ static const TLS_TEST tls_tests[] = { { "for SSL 3.0 support", test_ssl3, "yes", "no", "dunno" }, { "for version rollback bug in RSA PMS", test_rsa_pms, "no", "yes", "dunno" }, { "for version rollback bug in Client Hello", test_version_rollback, "no", "yes", "dunno" }, - { "whether we need to disable TLS 1.0", test_tls1_2, "no", "yes", "dunno" }, - { "for certificate information", test_certificate, "", "", "" }, - { "for trusted CAs", test_server_cas, "", "", "" }, + /* this test will disable TLS 1.0 if the server is * buggy */ + { "whether we need to disable TLS 1.0", test_tls1_2, "no", "yes", "dunno" }, + { "whether the server can accept Hello Extensions", test_hello_extension, "yes", "no", "dunno"}, { "whether the server can accept cipher suites not in SSL 3.0 spec", test_unknown_ciphersuites, "yes", "no", "dunno"}, + { "for certificate information", test_certificate, "", "", "" }, + { "for trusted CAs", test_server_cas, "", "", "" }, { "whether the server understands TLS closure alerts", test_bye, "yes", "no", "partially"}, { "whether the server supports session resumption", test_session_resume2, "yes", "no", "dunno"}, { "for export-grade ciphersuite support", test_export, "yes", "no", "dunno" }, |