From: Nathan S. Evans Date: Thu, 16 Sep 2010 14:12:56 +0000 (+0000) Subject: dhtlog inserts round info X-Git-Tag: initial-import-from-subversion-38251~20318 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8583688db9b49c1bef90321e0c464fbfe9121885;p=oweals%2Fgnunet.git dhtlog inserts round info --- diff --git a/src/dht/test_dhtlog.c b/src/dht/test_dhtlog.c index 08ac6af65..667bf3d2a 100644 --- a/src/dht/test_dhtlog.c +++ b/src/dht/test_dhtlog.c @@ -28,7 +28,7 @@ #include "gnunet_protocols.h" #include "dhtlog.h" -#define VERBOSE GNUNET_NO +#define VERBOSE GNUNET_YES static int ok; @@ -177,6 +177,11 @@ test (struct GNUNET_DHTLOG_Handle * api) CHECK(ret); #if VERBOSE fprintf(stderr, "Insert generic stat succeeded!\n"); +#endif + ret = api->insert_round(401, 507); + CHECK(ret); +#if VERBOSE + fprintf(stderr, "Insert round succeeded!\n"); #endif return 0; }