diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-05-30 10:58:28 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-05-30 10:58:28 +0200 |
commit | 2825992a3a1c544fb54cb9d91a772e59b903a13c (patch) | |
tree | ceb5880b2a8dc238c6d15929137c210b06827c9a | |
parent | 14e3e037972140889deb5bf2e90931af7e6b5ec9 (diff) |
reduce loop counters to more practical levels
-rw-r--r-- | src/util/test_crypto_ecdh_eddsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/test_crypto_ecdh_eddsa.c b/src/util/test_crypto_ecdh_eddsa.c index 0c044452b1..dba28e90a3 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, "."); |