Searched refs:iperf_binary (Results 1 – 2 of 2) sorted by relevance
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | iperf_client.py | 122 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 142 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 157 if not iperf_binary: 160 iperf_binary = 'iperf3' 162 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 163 iperf_cmd = [str(iperf_binary), '-c', ip] + iperf_args.split(' ') 188 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 203 if not iperf_binary: 206 iperf_binary = 'iperf3' 208 logging.debug('Using iperf3 binary located at %s' % iperf_binary) [all …]
|
D | iperf_server.py | 488 def start(self, extra_args='', tag='', iperf_binary=None): argument 502 if not iperf_binary: 505 iperf_binary = 'iperf3' 507 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 508 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port) 614 def start(self, extra_args='', tag='', iperf_binary=None): argument 628 if not iperf_binary: 631 iperf_binary = 'iperf3' 633 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 634 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port)
|