summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-08 14:13:26 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-08 15:18:45 +0200
commitefedab6be53e8d4d42f6ab7a71e85e722160aa83 (patch)
treec39e5825b2555e4322510994a0f4c3bf23c393cb
parent77b725f908a1b324fe2a966e90bd61c7de854950 (diff)
downloadgnutls-efedab6be53e8d4d42f6ab7a71e85e722160aa83.tar.gz
tests: reduce the number of loops in x509sign-verify2
This enables running the test in reasonable time under valgrind.
-rw-r--r--tests/x509sign-verify2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/x509sign-verify2.c b/tests/x509sign-verify2.c
index 58395699e7..157305e60f 100644
--- a/tests/x509sign-verify2.c
+++ b/tests/x509sign-verify2.c
@@ -99,7 +99,7 @@ void test_sig(gnutls_pk_algorithm_t pk, unsigned hash, unsigned bits)
sign_algo =
gnutls_pk_to_sign(pk, hash);
- for (j = 0; j < 1200; j++) {
+ for (j = 0; j < 100; j++) {
ret = gnutls_pubkey_init(&pubkey);
if (ret < 0)
ERR(__LINE__);