remove unused code in test

This commit is contained in:
Markus Teich 2016-08-17 17:40:10 +02:00
parent ec43082b1a
commit 8daaa565bd

View File

@ -111,7 +111,6 @@ test_new_join ()
int int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
int repeat = 1;
struct GNUNET_CRYPTO_EccDlogContext *edc; struct GNUNET_CRYPTO_EccDlogContext *edc;
edc = GNUNET_CRYPTO_ecc_dlog_prepare (1024, 16); edc = GNUNET_CRYPTO_ecc_dlog_prepare (1024, 16);
@ -119,10 +118,6 @@ main (int argc, char *argv[])
RUN (test_new_join); RUN (test_new_join);
for (tests_run = 0; tests_run < repeat; tests_run++)
{
}
GNUNET_CRYPTO_ecc_dlog_release (edc); GNUNET_CRYPTO_ecc_dlog_release (edc);
return ret; return ret;
} }