iperf3: increase additional wait time for iperf client

we've noticed that the Iperf client times out too soon in
some experiment. It seems that this happens with ZMQ if
the RAT is too slow (slower than realtime) and the eNB buffers
too much data. This causes iperf to still receive DL data
for example long after the configured runtime.

Change-Id: I9b823ab22812c96920d54fb7342c8d4c578d5270
This commit is contained in:
Andre Puschmann 2020-07-15 10:54:46 +02:00
parent 5c4c052d81
commit 053ee5fbb7
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ class IPerf3Client(log.Origin):
proc = self.prepare_test_proc_locally(netns, popen_args)
else:
proc = self.prepare_test_proc_remotely(netns, popen_args)
proc.set_default_wait_timeout(time_sec + 30) # leave 30 extra sec for remote run, ctrl conn establishment, etc.
proc.set_default_wait_timeout(time_sec + 120) # leave extra time for remote run, ctrl conn establishment, buffer draining, etc.
return proc
def prepare_test_proc_remotely(self, netns, popen_args):