Searched refs:iperf_binary (Results 1 – 2 of 2) sorted by relevance
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | iperf_client.py | 124 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 144 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 159 if not iperf_binary: 162 iperf_binary = 'iperf3' 164 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 165 iperf_cmd = [str(iperf_binary), '-c', ip] + iperf_args.split(' ') 193 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument 208 if not iperf_binary: 211 iperf_binary = 'iperf3' 213 logging.debug('Using iperf3 binary located at %s' % iperf_binary) [all …]
|
D | iperf_server.py | 500 def start(self, extra_args='', tag='', iperf_binary=None): argument 516 if not iperf_binary: 519 iperf_binary = 'iperf3' 521 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 522 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port) 648 def start(self, extra_args='', tag='', iperf_binary=None): argument 662 if not iperf_binary: 665 iperf_binary = 'iperf3' 667 logging.debug('Using iperf3 binary located at %s' % iperf_binary) 668 iperf_command = '{} -s -J -p {}'.format(iperf_binary, self.port)
|