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(' ') 185 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 200 if not iperf_binary: 203 iperf_binary = 'iperf3' 205 logging.debug('Using iperf3 binary located at %s' % iperf_binary) [all …]
|
D | iperf_server.py | 536 def start(self, extra_args='', tag='', iperf_binary=None): argument 552 if not iperf_binary: 555 iperf_binary = 'iperf3' 557 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 558 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port) 684 def start(self, extra_args='', tag='', iperf_binary=None): argument 698 if not iperf_binary: 701 iperf_binary = 'iperf3' 703 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 704 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port)
|