diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-06-05 16:20:25 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-06-22 12:54:18 +0200 |
commit | 155fe8ed9967f56c8364fbf7ce391cb2cd70d4c7 (patch) | |
tree | 84da1c4530e9eb46d46b1c16b4360ce2f4ee568a /tests/mini-record-failure.c | |
parent | ac4b38e3a40b0d2646b67694e5e1c62288ad92f2 (diff) | |
download | gnutls-155fe8ed9967f56c8364fbf7ce391cb2cd70d4c7.tar.gz |
tests: removed tests related to zlib support
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'tests/mini-record-failure.c')
-rw-r--r-- | tests/mini-record-failure.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/mini-record-failure.c b/tests/mini-record-failure.c index ba62449a6d..e346e7e931 100644 --- a/tests/mini-record-failure.c +++ b/tests/mini-record-failure.c @@ -356,10 +356,6 @@ static void start(const char *prio, int ign) #define NULL_SHA1 "NONE:+VERS-TLS1.0:-CIPHER-ALL:+NULL:+SHA1:+SIGN-ALL:+COMP-NULL:+ANON-ECDH:+RSA:+CURVE-ALL" -#define ARCFOUR_SHA1_ZLIB "NONE:+VERS-TLS1.0:-CIPHER-ALL:+ARCFOUR-128:+SHA1:+SIGN-ALL:+COMP-DEFLATE:+ANON-ECDH:+CURVE-ALL" - -#define AES_GCM_ZLIB "NONE:+VERS-TLS1.2:-CIPHER-ALL:+AES-128-GCM:+AEAD:+SIGN-ALL:+COMP-DEFLATE:+RSA:+CURVE-ALL" - #define NO_ETM ":%NO_ETM" static void ch_handler(int sig) @@ -385,16 +381,8 @@ void doit(void) start(ARCFOUR_SHA1, 0); start(ARCFOUR_MD5, 0); - -# ifdef HAVE_LIBZ - start(ARCFOUR_SHA1_ZLIB, 0); -# endif } -#ifdef HAVE_LIBZ - start(AES_GCM_ZLIB, 0); -#endif - start(AES_CBC NO_ETM, 1); start(AES_CBC_SHA256 NO_ETM, 1); start(AES_GCM NO_ETM, 0); @@ -404,15 +392,7 @@ void doit(void) start(ARCFOUR_SHA1 NO_ETM, 0); start(ARCFOUR_MD5 NO_ETM, 0); - -# ifdef HAVE_LIBZ - start(ARCFOUR_SHA1_ZLIB NO_ETM, 0); -# endif } - -#ifdef HAVE_LIBZ - start(AES_GCM_ZLIB NO_ETM, 0); -#endif } #endif /* _WIN32 */ |