gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: reduce loop counters to mor


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: reduce loop counters to more practical levels
Date: Wed, 30 May 2018 10:58:30 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 2825992a3 reduce loop counters to more practical levels
2825992a3 is described below

commit 2825992a3a1c544fb54cb9d91a772e59b903a13c
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed May 30 10:58:28 2018 +0200

    reduce loop counters to more practical levels
---
 src/util/test_crypto_ecdh_eddsa.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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,
              ".");

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]