@@ -283,12 +283,6 @@ TEST(EncryptionTests, zrtp_multistream)
283
283
std::unique_ptr<std::thread> receiver_thread2 =
284
284
std::unique_ptr<std::thread>(new std::thread (zrtp_receive_func, receiver_session, SENDER_PORT + 4 , RECEIVER_PORT + 4 , zrtp_multistream_flags, 0 , 0 ));
285
285
286
- std::unique_ptr<std::thread> sender_thread3 =
287
- std::unique_ptr<std::thread>(new std::thread (zrtp_sender_func, sender_session, SENDER_PORT + 6 , RECEIVER_PORT + 6 , zrtp_multistream_flags, 0 , 0 ));
288
-
289
- std::unique_ptr<std::thread> receiver_thread3 =
290
- std::unique_ptr<std::thread>(new std::thread (zrtp_receive_func, receiver_session, SENDER_PORT + 6 , RECEIVER_PORT + 6 , zrtp_multistream_flags, 0 , 0 ));
291
-
292
286
if (receiver_thread1 && receiver_thread1->joinable ())
293
287
{
294
288
receiver_thread1->join ();
@@ -309,16 +303,6 @@ TEST(EncryptionTests, zrtp_multistream)
309
303
receiver_thread2->join ();
310
304
}
311
305
312
- if (sender_thread3 && sender_thread3->joinable ())
313
- {
314
- sender_thread3->join ();
315
- }
316
-
317
- if (receiver_thread3 && receiver_thread3->joinable ())
318
- {
319
- receiver_thread3->join ();
320
- }
321
-
322
306
std::cout << received_packets << " / 30 packets received" << std::endl;
323
307
EXPECT_TRUE (received_packets > 25 );
324
308
@@ -359,12 +343,6 @@ TEST(EncryptionTests, zrtp_multistream_ip6)
359
343
std::unique_ptr<std::thread> receiver_thread2 =
360
344
std::unique_ptr<std::thread>(new std::thread (zrtp_receive_func, receiver_session, SENDER_PORT + 4 , RECEIVER_PORT + 4 , zrtp_multistream_flags, 0 , 0 ));
361
345
362
- std::unique_ptr<std::thread> sender_thread3 =
363
- std::unique_ptr<std::thread>(new std::thread (zrtp_sender_func, sender_session, SENDER_PORT + 6 , RECEIVER_PORT + 6 , zrtp_multistream_flags, 0 , 0 ));
364
-
365
- std::unique_ptr<std::thread> receiver_thread3 =
366
- std::unique_ptr<std::thread>(new std::thread (zrtp_receive_func, receiver_session, SENDER_PORT + 6 , RECEIVER_PORT + 6 , zrtp_multistream_flags, 0 , 0 ));
367
-
368
346
if (receiver_thread1 && receiver_thread1->joinable ())
369
347
{
370
348
receiver_thread1->join ();
@@ -385,15 +363,6 @@ TEST(EncryptionTests, zrtp_multistream_ip6)
385
363
receiver_thread2->join ();
386
364
}
387
365
388
- if (sender_thread3 && sender_thread3->joinable ())
389
- {
390
- sender_thread3->join ();
391
- }
392
-
393
- if (receiver_thread3 && receiver_thread3->joinable ())
394
- {
395
- receiver_thread3->join ();
396
- }
397
366
398
367
std::cout << received_packets << " / 30 packets received" << std::endl;
399
368
EXPECT_TRUE (received_packets > 25 );
0 commit comments