From: Nikos Mavrogiannopoulos Date: Sat, 21 May 2011 10:34:29 +0000 (+0200) Subject: Print purpose of testing. X-Git-Tag: gnutls_2_99_2~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=917a5fa7ced3690df6764bf961cef3d632e18cc2;p=thirdparty%2Fgnutls.git Print purpose of testing. --- diff --git a/src/benchmark-tls.c b/src/benchmark-tls.c index 517e2cbe72..fc20f2ab65 100644 --- a/src/benchmark-tls.c +++ b/src/benchmark-tls.c @@ -270,9 +270,11 @@ main (int argc, char **argv) } gnutls_global_init (); + printf("Testing key exchanges:\n"); test_ciphersuite_kx (PRIO_DH); test_ciphersuite_kx (PRIO_ECDH); + printf("\nTesting throughput in cipher/MAC combinations:\n"); test_ciphersuite (PRIO_AES_CBC_SHA1, 1024); test_ciphersuite (PRIO_AES_CBC_SHA1, 4096); test_ciphersuite (PRIO_AES_CBC_SHA1, 8*1024);