iperf3: increase extra timeout to 30s

10s was too short and has still caused tests to fail because they were
stopped just before the iperf finished.

30s seems to be enought and has passed multiple times so far

Change-Id: I80b732a060356aa98882ff0e8b5debaf623ba0fb
This commit is contained in:
Andre Puschmann 2020-06-12 21:40:45 +02:00 committed by srs_andre
parent 8b1547b562
commit f678c4dfec
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ class IPerf3Client(log.Origin):
proc = self.prepare_test_proc_locally(dir, netns, time_sec, proto == IPerf3Client.PROTO_UDP, bitrate)
else:
proc = self.prepare_test_proc_remotely(dir, netns, time_sec, proto == IPerf3Client.PROTO_UDP, bitrate)
proc.set_default_wait_timeout(time_sec + 10) # leave 10 extra sec for remote run, ctrl conn establishment, etc.
proc.set_default_wait_timeout(time_sec + 30) # leave 30 extra sec for remote run, ctrl conn establishment, etc.
return proc
def prepare_test_proc_remotely(self, dir, netns, time_sec, use_udp, bitrate):