Skip to content
Snippets Groups Projects
Commit 24b1008d authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Remove unnecessary delays from large data transfer unit test

parent a4340c33
No related branches found
No related tags found
No related merge requests found
......@@ -1201,7 +1201,7 @@ struct TestConnection
server.Send(peer_id_client, 0, data1, true);
sleep_ms(3000);
//sleep_ms(3000);
SharedBuffer<u8> recvdata;
infostream<<"** running client.Receive()"<<std::endl;
......@@ -1210,7 +1210,7 @@ struct TestConnection
bool received = false;
u32 timems0 = porting::getTimeMs();
for(;;){
if(porting::getTimeMs() - timems0 > 5000)
if(porting::getTimeMs() - timems0 > 5000 || received)
break;
try{
size = client.Receive(peer_id, recvdata);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment