From: Christian Grothoff <christian@grothoff.org>
Date: Wed, 30 May 2018 08:58:28 +0000 (+0200)
Subject: reduce loop counters to more practical levels
X-Git-Tag: v0.11.0pre66~34
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2825992a3a1c544fb54cb9d91a772e59b903a13c;p=oweals%2Fgnunet.git

reduce loop counters to more practical levels
---

diff --git a/src/util/test_crypto_ecdh_eddsa.c b/src/util/test_crypto_ecdh_eddsa.c
index 0c044452b..dba28e90a 100644
--- a/src/util/test_crypto_ecdh_eddsa.c
+++ b/src/util/test_crypto_ecdh_eddsa.c
@@ -42,7 +42,7 @@ test_ecdh()
   priv_dsa = GNUNET_CRYPTO_eddsa_key_create ();
   GNUNET_CRYPTO_eddsa_key_get_public (priv_dsa,
                                       &id1);
-  for (unsigned int j=0;j<10;j++)
+  for (unsigned int j=0;j<4;j++)
   {
     fprintf (stderr, ",");
     priv_ecdh = GNUNET_CRYPTO_ecdhe_key_create ();
@@ -82,7 +82,7 @@ main (int argc, char *argv[])
   if (getenv ("GNUNET_GCRYPT_DEBUG"))
     gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u, 0);
   GNUNET_log_setup ("test-crypto-ecdh-eddsa", "WARNING", NULL);
-  for (unsigned int i=0;i<10000;i++)
+  for (unsigned int i=0;i<4;i++)
   {
     fprintf (stderr,
              ".");