Searched refs:iperf_binary (Results 1 – 2 of 2) sorted by relevance
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | iperf_client.py | 125 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 145 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 160 if not iperf_binary: 163 iperf_binary = 'iperf3' 165 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 166 iperf_cmd = [str(iperf_binary), '-c', ip] + iperf_args.split(' ') 194 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 209 if not iperf_binary: 212 iperf_binary = 'iperf3' 214 logging.debug('Using iperf3 binary located at %s' % iperf_binary) [all …]
|
D | iperf_server.py | 512 def start(self, extra_args='', tag='', iperf_binary=None): argument 529 if not iperf_binary: 532 iperf_binary = 'iperf3' 534 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 535 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port) 661 def start(self, extra_args='', tag='', iperf_binary=None): argument 675 if not iperf_binary: 678 iperf_binary = 'iperf3' 680 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 681 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port)
|