aboutsummaryrefslogtreecommitdiff
path: root/src/set
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-30 00:21:42 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-30 00:21:42 +0000
commitbeccfee0add2579a9beb65af41ac266f04635f3c (patch)
tree6ed4d5cf02a419bcfec3e13f97e03fbb1f70955f /src/set
parentc9fca90e1efe64166a2bf259df3242f50af9a6ac (diff)
downloadgnunet-beccfee0add2579a9beb65af41ac266f04635f3c.tar.gz
gnunet-beccfee0add2579a9beb65af41ac266f04635f3c.zip
-misc fixes, in particular actually build bf
Diffstat (limited to 'src/set')
-rw-r--r--src/set/gnunet-service-set.c4
-rw-r--r--src/set/gnunet-service-set_intersection.c113
-rw-r--r--src/set/set_api.c3
-rw-r--r--src/set/test_set.conf18
-rw-r--r--src/set/test_set_intersection_result_full.c2
5 files changed, 106 insertions, 34 deletions
diff --git a/src/set/gnunet-service-set.c b/src/set/gnunet-service-set.c
index 34824f46d..44f34a492 100644
--- a/src/set/gnunet-service-set.c
+++ b/src/set/gnunet-service-set.c
@@ -719,7 +719,7 @@ handle_client_iterate (void *cls,
719 return; 719 return;
720 } 720 }
721 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 721 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
722 "Iterating union set with %u elements\n", 722 "Iterating set with %u elements\n",
723 GNUNET_CONTAINER_multihashmap_size (set->elements)); 723 GNUNET_CONTAINER_multihashmap_size (set->elements));
724 GNUNET_SERVER_receive_done (client, 724 GNUNET_SERVER_receive_done (client,
725 GNUNET_OK); 725 GNUNET_OK);
@@ -748,7 +748,7 @@ handle_client_create_set (void *cls,
748 msg = (const struct GNUNET_SET_CreateMessage *) m; 748 msg = (const struct GNUNET_SET_CreateMessage *) m;
749 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 749 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
750 "Client created new set (operation %u)\n", 750 "Client created new set (operation %u)\n",
751 ntohs (msg->operation)); 751 ntohl (msg->operation));
752 if (NULL != set_get (client)) 752 if (NULL != set_get (client))
753 { 753 {
754 /* There can only be one set per client */ 754 /* There can only be one set per client */
diff --git a/src/set/gnunet-service-set_intersection.c b/src/set/gnunet-service-set_intersection.c
index 2af68dbef..ed29033b4 100644
--- a/src/set/gnunet-service-set_intersection.c
+++ b/src/set/gnunet-service-set_intersection.c
@@ -37,14 +37,20 @@
37enum IntersectionOperationPhase 37enum IntersectionOperationPhase
38{ 38{
39 /** 39 /**
40 * Alices has suggested an operation to bob, 40 * We are just starting.
41 * and is waiting for a bf or session end.
42 */ 41 */
43 PHASE_INITIAL, 42 PHASE_INITIAL,
44 43
45 /** 44 /**
46 * Bob has accepted the operation, Bob and Alice are now exchanging bfs 45 * We have send the number of our elements to the other
47 * until one notices the their element hashes are equal. 46 * peer, but did not setup our element set yet.
47 */
48 PHASE_COUNT_SENT,
49
50 /**
51 * We have initialized our set and are now reducing it by exchanging
52 * Bloom filters until one party notices the their element hashes
53 * are equal.
48 */ 54 */
49 PHASE_BF_EXCHANGE, 55 PHASE_BF_EXCHANGE,
50 56
@@ -227,14 +233,30 @@ filtered_map_initialization (void *cls,
227 struct ElementEntry *ee = value; 233 struct ElementEntry *ee = value;
228 struct GNUNET_HashCode mutated_hash; 234 struct GNUNET_HashCode mutated_hash;
229 235
236
237 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
238 "FIMA called for %s:%u\n",
239 GNUNET_h2s (&ee->element_hash),
240 ee->element.size);
241
230 if ( (op->generation_created < ee->generation_removed) && 242 if ( (op->generation_created < ee->generation_removed) &&
231 (op->generation_created >= ee->generation_added) ) 243 (op->generation_created >= ee->generation_added) )
244 {
245 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
246 "Reduced initialization, not starting with %s:%u (wrong generation)\n",
247 GNUNET_h2s (&ee->element_hash),
248 ee->element.size);
232 return GNUNET_YES; /* element not valid in our operation's generation */ 249 return GNUNET_YES; /* element not valid in our operation's generation */
250 }
233 251
234 /* Test if element is in Bob's bloomfilter */ 252 /* Test if element is in other peer's bloomfilter */
235 GNUNET_BLOCK_mingle_hash (&ee->element_hash, 253 GNUNET_BLOCK_mingle_hash (&ee->element_hash,
236 op->state->salt, 254 op->state->salt,
237 &mutated_hash); 255 &mutated_hash);
256 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
257 "Testing mingled hash %s with salt %u\n",
258 GNUNET_h2s (&mutated_hash),
259 op->state->salt);
238 if (GNUNET_NO == 260 if (GNUNET_NO ==
239 GNUNET_CONTAINER_bloomfilter_test (op->state->remote_bf, 261 GNUNET_CONTAINER_bloomfilter_test (op->state->remote_bf,
240 &mutated_hash)) 262 &mutated_hash))
@@ -242,12 +264,20 @@ filtered_map_initialization (void *cls,
242 /* remove this element */ 264 /* remove this element */
243 send_client_removed_element (op, 265 send_client_removed_element (op,
244 &ee->element); 266 &ee->element);
267 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
268 "Reduced initialization, not starting with %s:%u\n",
269 GNUNET_h2s (&ee->element_hash),
270 ee->element.size);
245 return GNUNET_YES; 271 return GNUNET_YES;
246 } 272 }
247 op->state->my_element_count++; 273 op->state->my_element_count++;
248 GNUNET_CRYPTO_hash_xor (&op->state->my_xor, 274 GNUNET_CRYPTO_hash_xor (&op->state->my_xor,
249 &ee->element_hash, 275 &ee->element_hash,
250 &op->state->my_xor); 276 &op->state->my_xor);
277 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
278 "Filtered initialization of my_elements, adding %s:%u\n",
279 GNUNET_h2s (&ee->element_hash),
280 ee->element.size);
251 GNUNET_break (GNUNET_YES == 281 GNUNET_break (GNUNET_YES ==
252 GNUNET_CONTAINER_multihashmap_put (op->state->my_elements, 282 GNUNET_CONTAINER_multihashmap_put (op->state->my_elements,
253 &ee->element_hash, 283 &ee->element_hash,
@@ -279,6 +309,10 @@ iterator_bf_reduce (void *cls,
279 GNUNET_BLOCK_mingle_hash (&ee->element_hash, 309 GNUNET_BLOCK_mingle_hash (&ee->element_hash,
280 op->state->salt, 310 op->state->salt,
281 &mutated_hash); 311 &mutated_hash);
312 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
313 "Testing mingled hash %s with salt %u\n",
314 GNUNET_h2s (&mutated_hash),
315 op->state->salt);
282 if (GNUNET_NO == 316 if (GNUNET_NO ==
283 GNUNET_CONTAINER_bloomfilter_test (op->state->remote_bf, 317 GNUNET_CONTAINER_bloomfilter_test (op->state->remote_bf,
284 &mutated_hash)) 318 &mutated_hash))
@@ -288,6 +322,10 @@ iterator_bf_reduce (void *cls,
288 GNUNET_CRYPTO_hash_xor (&op->state->my_xor, 322 GNUNET_CRYPTO_hash_xor (&op->state->my_xor,
289 &ee->element_hash, 323 &ee->element_hash,
290 &op->state->my_xor); 324 &op->state->my_xor);
325 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
326 "Bloom filter reduction of my_elements, removing %s:%u\n",
327 GNUNET_h2s (&ee->element_hash),
328 ee->element.size);
291 GNUNET_assert (GNUNET_YES == 329 GNUNET_assert (GNUNET_YES ==
292 GNUNET_CONTAINER_multihashmap_remove (op->state->my_elements, 330 GNUNET_CONTAINER_multihashmap_remove (op->state->my_elements,
293 &ee->element_hash, 331 &ee->element_hash,
@@ -295,6 +333,13 @@ iterator_bf_reduce (void *cls,
295 send_client_removed_element (op, 333 send_client_removed_element (op,
296 &ee->element); 334 &ee->element);
297 } 335 }
336 else
337 {
338 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
339 "Bloom filter reduction of my_elements, keeping %s:%u\n",
340 GNUNET_h2s (&ee->element_hash),
341 ee->element.size);
342 }
298 return GNUNET_YES; 343 return GNUNET_YES;
299} 344}
300 345
@@ -319,6 +364,10 @@ iterator_bf_create (void *cls,
319 GNUNET_BLOCK_mingle_hash (&ee->element_hash, 364 GNUNET_BLOCK_mingle_hash (&ee->element_hash,
320 op->state->salt, 365 op->state->salt,
321 &mutated_hash); 366 &mutated_hash);
367 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
368 "Initializing BF with hash %s with salt %u\n",
369 GNUNET_h2s (&mutated_hash),
370 op->state->salt);
322 GNUNET_CONTAINER_bloomfilter_add (op->state->local_bf, 371 GNUNET_CONTAINER_bloomfilter_add (op->state->local_bf,
323 &mutated_hash); 372 &mutated_hash);
324 return GNUNET_YES; 373 return GNUNET_YES;
@@ -370,7 +419,6 @@ send_bloomfilter (struct Operation *op)
370 uint32_t bf_size; 419 uint32_t bf_size;
371 uint32_t bf_elementbits; 420 uint32_t bf_elementbits;
372 uint32_t chunk_size; 421 uint32_t chunk_size;
373 struct GNUNET_CONTAINER_BloomFilter *local_bf;
374 char *bf_data; 422 char *bf_data;
375 uint32_t offset; 423 uint32_t offset;
376 424
@@ -387,11 +435,12 @@ send_bloomfilter (struct Operation *op)
387 bf_size = ceil ((double) (op->state->my_element_count 435 bf_size = ceil ((double) (op->state->my_element_count
388 * bf_elementbits / log(2))); 436 * bf_elementbits / log(2)));
389 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 437 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
390 "Sending bf of size %u\n", 438 "Sending Bloom filter (%u) of size %u bytes\n",
439 (unsigned int) bf_elementbits,
391 (unsigned int) bf_size); 440 (unsigned int) bf_size);
392 local_bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 441 op->state->local_bf = GNUNET_CONTAINER_bloomfilter_init (NULL,
393 bf_size, 442 bf_size,
394 bf_elementbits); 443 bf_elementbits);
395 op->state->salt = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, 444 op->state->salt = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
396 UINT32_MAX); 445 UINT32_MAX);
397 GNUNET_CONTAINER_multihashmap_iterate (op->state->my_elements, 446 GNUNET_CONTAINER_multihashmap_iterate (op->state->my_elements,
@@ -408,7 +457,7 @@ send_bloomfilter (struct Operation *op)
408 chunk_size, 457 chunk_size,
409 GNUNET_MESSAGE_TYPE_SET_INTERSECTION_P2P_BF); 458 GNUNET_MESSAGE_TYPE_SET_INTERSECTION_P2P_BF);
410 GNUNET_assert (GNUNET_SYSERR != 459 GNUNET_assert (GNUNET_SYSERR !=
411 GNUNET_CONTAINER_bloomfilter_get_raw_data (local_bf, 460 GNUNET_CONTAINER_bloomfilter_get_raw_data (op->state->local_bf,
412 (char*) &msg[1], 461 (char*) &msg[1],
413 bf_size)); 462 bf_size));
414 msg->sender_element_count = htonl (op->state->my_element_count); 463 msg->sender_element_count = htonl (op->state->my_element_count);
@@ -423,7 +472,7 @@ send_bloomfilter (struct Operation *op)
423 /* multipart */ 472 /* multipart */
424 bf_data = GNUNET_malloc (bf_size); 473 bf_data = GNUNET_malloc (bf_size);
425 GNUNET_assert (GNUNET_SYSERR != 474 GNUNET_assert (GNUNET_SYSERR !=
426 GNUNET_CONTAINER_bloomfilter_get_raw_data (local_bf, 475 GNUNET_CONTAINER_bloomfilter_get_raw_data (op->state->local_bf,
427 bf_data, 476 bf_data,
428 bf_size)); 477 bf_size));
429 offset = 0; 478 offset = 0;
@@ -447,7 +496,8 @@ send_bloomfilter (struct Operation *op)
447 } 496 }
448 GNUNET_free (bf_data); 497 GNUNET_free (bf_data);
449 } 498 }
450 GNUNET_CONTAINER_bloomfilter_free (local_bf); 499 GNUNET_CONTAINER_bloomfilter_free (op->state->local_bf);
500 op->state->local_bf = NULL;
451} 501}
452 502
453 503
@@ -560,15 +610,25 @@ send_peer_done (struct Operation *op)
560static void 610static void
561process_bf (struct Operation *op) 611process_bf (struct Operation *op)
562{ 612{
613 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
614 "Received BF in phase %u, foreign count is %u, my element count is %u/%u\n",
615 op->state->phase,
616 op->spec->remote_element_count,
617 op->state->my_element_count,
618 GNUNET_CONTAINER_multihashmap_size (op->spec->set->elements));
563 switch (op->state->phase) 619 switch (op->state->phase)
564 { 620 {
565 case PHASE_INITIAL: 621 case PHASE_INITIAL:
622 GNUNET_break_op (0);
623 fail_intersection_operation(op);
624 return;
625 case PHASE_COUNT_SENT:
566 /* This is the first BF being sent, build our initial map with 626 /* This is the first BF being sent, build our initial map with
567 filtering in place */ 627 filtering in place */
568 op->state->my_elements 628 op->state->my_elements
569 = GNUNET_CONTAINER_multihashmap_create (op->spec->remote_element_count, 629 = GNUNET_CONTAINER_multihashmap_create (op->spec->remote_element_count,
570 GNUNET_YES); 630 GNUNET_YES);
571 GNUNET_break (0 == op->state->my_element_count); 631 op->state->my_element_count = 0;
572 GNUNET_CONTAINER_multihashmap_iterate (op->spec->set->elements, 632 GNUNET_CONTAINER_multihashmap_iterate (op->spec->set->elements,
573 &filtered_map_initialization, 633 &filtered_map_initialization,
574 op); 634 op);
@@ -633,6 +693,7 @@ handle_p2p_bf (void *cls,
633 GNUNET_break_op (0); 693 GNUNET_break_op (0);
634 fail_intersection_operation (op); 694 fail_intersection_operation (op);
635 break; 695 break;
696 case PHASE_COUNT_SENT:
636 case PHASE_BF_EXCHANGE: 697 case PHASE_BF_EXCHANGE:
637 bf_size = ntohl (msg->bloomfilter_total_length); 698 bf_size = ntohl (msg->bloomfilter_total_length);
638 bf_bits_per_element = ntohl (msg->bits_per_element); 699 bf_bits_per_element = ntohl (msg->bits_per_element);
@@ -652,6 +713,7 @@ handle_p2p_bf (void *cls,
652 bf_size, 713 bf_size,
653 bf_bits_per_element); 714 bf_bits_per_element);
654 op->state->salt = ntohl (msg->sender_mutator); 715 op->state->salt = ntohl (msg->sender_mutator);
716 op->spec->remote_element_count = ntohl (msg->sender_element_count);
655 process_bf (op); 717 process_bf (op);
656 return; 718 return;
657 } 719 }
@@ -728,6 +790,10 @@ initialize_map_unfiltered (void *cls,
728 GNUNET_CRYPTO_hash_xor (&op->state->my_xor, 790 GNUNET_CRYPTO_hash_xor (&op->state->my_xor,
729 &ee->element_hash, 791 &ee->element_hash,
730 &op->state->my_xor); 792 &op->state->my_xor);
793 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
794 "Initial full initialization of my_elements, adding %s:%u\n",
795 GNUNET_h2s (&ee->element_hash),
796 ee->element.size);
731 GNUNET_break (GNUNET_YES == 797 GNUNET_break (GNUNET_YES ==
732 GNUNET_CONTAINER_multihashmap_put (op->state->my_elements, 798 GNUNET_CONTAINER_multihashmap_put (op->state->my_elements,
733 &ee->element_hash, 799 &ee->element_hash,
@@ -750,7 +816,8 @@ send_element_count (struct Operation *op)
750 struct IntersectionElementInfoMessage *msg; 816 struct IntersectionElementInfoMessage *msg;
751 817
752 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 818 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
753 "Sending our element count (bf_msg)\n"); 819 "Sending our element count (%u)\n",
820 op->state->my_element_count);
754 ev = GNUNET_MQ_msg (msg, 821 ev = GNUNET_MQ_msg (msg,
755 GNUNET_MESSAGE_TYPE_SET_INTERSECTION_P2P_ELEMENT_INFO); 822 GNUNET_MESSAGE_TYPE_SET_INTERSECTION_P2P_ELEMENT_INFO);
756 msg->sender_element_count = htonl (op->state->my_element_count); 823 msg->sender_element_count = htonl (op->state->my_element_count);
@@ -767,7 +834,6 @@ send_element_count (struct Operation *op)
767static void 834static void
768begin_bf_exchange (struct Operation *op) 835begin_bf_exchange (struct Operation *op)
769{ 836{
770 GNUNET_break (PHASE_INITIAL == op->state->phase);
771 op->state->phase = PHASE_BF_EXCHANGE; 837 op->state->phase = PHASE_BF_EXCHANGE;
772 op->state->my_elements 838 op->state->my_elements
773 = GNUNET_CONTAINER_multihashmap_create (op->state->my_element_count, 839 = GNUNET_CONTAINER_multihashmap_create (op->state->my_element_count,
@@ -801,7 +867,12 @@ handle_p2p_element_info (void *cls,
801 } 867 }
802 msg = (const struct IntersectionElementInfoMessage *) mh; 868 msg = (const struct IntersectionElementInfoMessage *) mh;
803 op->spec->remote_element_count = ntohl (msg->sender_element_count); 869 op->spec->remote_element_count = ntohl (msg->sender_element_count);
804 if ( (PHASE_INITIAL != op->state->phase) || 870 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
871 "Received remote element count (%u), I have %u\n",
872 op->spec->remote_element_count,
873 op->state->my_element_count);
874 if ( ( (PHASE_INITIAL != op->state->phase) &&
875 (PHASE_COUNT_SENT != op->state->phase) ) ||
805 (op->state->my_element_count > op->spec->remote_element_count) || 876 (op->state->my_element_count > op->spec->remote_element_count) ||
806 (0 == op->state->my_element_count) || 877 (0 == op->state->my_element_count) ||
807 (0 == op->spec->remote_element_count) ) 878 (0 == op->spec->remote_element_count) )
@@ -861,6 +932,10 @@ filter_all (void *cls,
861 GNUNET_CRYPTO_hash_xor (&op->state->my_xor, 932 GNUNET_CRYPTO_hash_xor (&op->state->my_xor,
862 &ee->element_hash, 933 &ee->element_hash,
863 &op->state->my_xor); 934 &op->state->my_xor);
935 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
936 "Final reduction of my_elements, removing %s:%u\n",
937 GNUNET_h2s (&ee->element_hash),
938 ee->element.size);
864 GNUNET_assert (GNUNET_YES == 939 GNUNET_assert (GNUNET_YES ==
865 GNUNET_CONTAINER_multihashmap_remove (op->state->my_elements, 940 GNUNET_CONTAINER_multihashmap_remove (op->state->my_elements,
866 &ee->element_hash, 941 &ee->element_hash,
@@ -945,7 +1020,7 @@ intersection_evaluate (struct Operation *op,
945 op->state->my_element_count = op->spec->set->state->current_set_element_count; 1020 op->state->my_element_count = op->spec->set->state->current_set_element_count;
946 1021
947 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1022 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
948 "Initiating intersection operation evaluation"); 1023 "Initiating intersection operation evaluation\n");
949 ev = GNUNET_MQ_msg_nested_mh (msg, 1024 ev = GNUNET_MQ_msg_nested_mh (msg,
950 GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST, 1025 GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST,
951 opaque_context); 1026 opaque_context);
@@ -995,7 +1070,7 @@ intersection_accept (struct Operation *op)
995 /* If the other peer (Alice) has fewer elements than us (Bob), 1070 /* If the other peer (Alice) has fewer elements than us (Bob),
996 we just send the count as Alice should send the first BF */ 1071 we just send the count as Alice should send the first BF */
997 send_element_count (op); 1072 send_element_count (op);
998 op->state->phase = PHASE_BF_EXCHANGE; 1073 op->state->phase = PHASE_COUNT_SENT;
999 return; 1074 return;
1000 } 1075 }
1001 /* We have fewer elements, so we start with the BF */ 1076 /* We have fewer elements, so we start with the BF */
diff --git a/src/set/set_api.c b/src/set/set_api.c
index ac0be21fe..20a9d149a 100644
--- a/src/set/set_api.c
+++ b/src/set/set_api.c
@@ -467,6 +467,9 @@ GNUNET_SET_create (const struct GNUNET_CONFIGURATION_Handle *cfg,
467 struct GNUNET_MQ_Envelope *mqm; 467 struct GNUNET_MQ_Envelope *mqm;
468 struct GNUNET_SET_CreateMessage *msg; 468 struct GNUNET_SET_CreateMessage *msg;
469 469
470 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
471 "Creating new set (operation %u)\n",
472 op);
470 set = GNUNET_new (struct GNUNET_SET_Handle); 473 set = GNUNET_new (struct GNUNET_SET_Handle);
471 set->client = GNUNET_CLIENT_connect ("set", cfg); 474 set->client = GNUNET_CLIENT_connect ("set", cfg);
472 if (NULL == set->client) 475 if (NULL == set->client)
diff --git a/src/set/test_set.conf b/src/set/test_set.conf
index d59c425c4..8b727d2f8 100644
--- a/src/set/test_set.conf
+++ b/src/set/test_set.conf
@@ -2,26 +2,20 @@
2[PATHS] 2[PATHS]
3GNUNET_TEST_HOME = /tmp/test-gnunet-set/ 3GNUNET_TEST_HOME = /tmp/test-gnunet-set/
4 4
5[arm]
6DEFAULTSERVICES = topology dht nse cadet
7
5[set] 8[set]
6AUTOSTART = YES 9AUTOSTART = YES
7PORT = 2106 10@UNIXONLY@ PORT = 2106
8HOSTNAME = localhost
9BINARY = gnunet-service-set
10#PREFIX = valgrind 11#PREFIX = valgrind
11#PREFIX = valgrind -v --leak-check=full 12#PREFIX = valgrind -v --leak-check=full
12#PREFIX = gdbserver :1234 13#PREFIX = gdbserver :1234
13ACCEPT_FROM = 127.0.0.1; 14#OPTIONS = -L INFO
14ACCEPT_FROM6 = ::1;
15UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-set.sock
16UNIX_MATCH_UID = YES
17UNIX_MATCH_GID = YES
18OPTIONS = -L INFO
19
20 15
21[transport] 16[transport]
22OPTIONS = -LERROR 17OPTIONS = -LERROR
23 18
24
25[testbed] 19[testbed]
26OVERLAY_TOPOLOGY = CLIQUE 20OVERLAY_TOPOLOGY = CLIQUE
27 21
diff --git a/src/set/test_set_intersection_result_full.c b/src/set/test_set_intersection_result_full.c
index 567a2ed0d..1baf667dd 100644
--- a/src/set/test_set_intersection_result_full.c
+++ b/src/set/test_set_intersection_result_full.c
@@ -234,7 +234,7 @@ run (void *cls,
234{ 234{
235 config = cfg; 235 config = cfg;
236 GNUNET_TESTING_peer_get_identity (peer, &local_id); 236 GNUNET_TESTING_peer_get_identity (peer, &local_id);
237 test_iter (); 237 if (0) test_iter ();
238 238
239 set1 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_INTERSECTION); 239 set1 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_INTERSECTION);
240 set2 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_INTERSECTION); 240 set2 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_INTERSECTION);