From: Nikos Mavrogiannopoulos Date: Wed, 12 Jul 2017 11:38:39 +0000 (+0200) Subject: tests: verify that no signature algorithms with (D)TLS 1.2 will cause an error X-Git-Tag: gnutls_3_6_3~440 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d652dd154f79bcb82b4cfc967cd0233df3767f70;p=thirdparty%2Fgnutls.git tests: verify that no signature algorithms with (D)TLS 1.2 will cause an error Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/tests/priorities.c b/tests/priorities.c index 4d5c2bd322..797c245039 100644 --- a/tests/priorities.c +++ b/tests/priorities.c @@ -150,4 +150,6 @@ void doit(void) try_prio("NORMAL:+RSA-EXPORT:+ARCFOUR-40", normal_cs, normal_ciphers, __LINE__); try_prio_err("NORMAL:-VERS-ALL:+VERS-TLS1.2:-SIGN-ALL:+SIGN-ECDSA-SECP256R1-SHA256", GNUTLS_E_NO_PRIORITIES_WERE_SET); + try_prio_err("NORMAL:-VERS-ALL:+VERS-TLS1.2:-SIGN-ALL", GNUTLS_E_NO_PRIORITIES_WERE_SET); + try_prio_err("NORMAL:-VERS-ALL:+VERS-DTLS1.2:-SIGN-ALL", GNUTLS_E_NO_PRIORITIES_WERE_SET); }