Skip to content

Commit f974e2d

Browse files
committed
tests: Reduce multistream tests to two stream
Currently, ZRTP only supports two streams in multistream mode so testing three does not make sense until three or more is supported.
1 parent 2affbfd commit f974e2d

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

test/test_5_srtp_zrtp.cpp

-31
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,6 @@ TEST(EncryptionTests, zrtp_multistream)
283283
std::unique_ptr<std::thread> receiver_thread2 =
284284
std::unique_ptr<std::thread>(new std::thread(zrtp_receive_func, receiver_session, SENDER_PORT + 4, RECEIVER_PORT + 4, zrtp_multistream_flags, 0, 0));
285285

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-
292286
if (receiver_thread1 && receiver_thread1->joinable())
293287
{
294288
receiver_thread1->join();
@@ -309,16 +303,6 @@ TEST(EncryptionTests, zrtp_multistream)
309303
receiver_thread2->join();
310304
}
311305

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-
322306
std::cout << received_packets << " / 30 packets received" << std::endl;
323307
EXPECT_TRUE(received_packets > 25);
324308

@@ -359,12 +343,6 @@ TEST(EncryptionTests, zrtp_multistream_ip6)
359343
std::unique_ptr<std::thread> receiver_thread2 =
360344
std::unique_ptr<std::thread>(new std::thread(zrtp_receive_func, receiver_session, SENDER_PORT + 4, RECEIVER_PORT + 4, zrtp_multistream_flags, 0, 0));
361345

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-
368346
if (receiver_thread1 && receiver_thread1->joinable())
369347
{
370348
receiver_thread1->join();
@@ -385,15 +363,6 @@ TEST(EncryptionTests, zrtp_multistream_ip6)
385363
receiver_thread2->join();
386364
}
387365

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-
}
397366

398367
std::cout << received_packets << " / 30 packets received" << std::endl;
399368
EXPECT_TRUE(received_packets > 25);

0 commit comments

Comments
 (0)