Add -a to nuttcp run to increase reliability

Change-Id: I093705ee677d6816d8df73f7aab6cd331ba85d86
This commit is contained in:
Yichen Wang 2017-09-07 00:30:02 -07:00
parent 03a4e4c284
commit 63b1c8f1ce

View File

@ -151,10 +151,10 @@ class NuttcpTool(PerfTool):
duration_sec = self.instance.get_cmd_duration()
# use data port 5001 and control port 5002
# must be enabled in the VM security group
cmd = "%s -T%d %s -p5001 -P5002 -fparse %s" % (self.dest_path,
duration_sec,
opts,
target_ip)
cmd = "%s -a -T%d %s -p5001 -P5002 -fparse %s" % (self.dest_path,
duration_sec,
opts,
target_ip)
self.instance.buginf(cmd)
try:
if no_cpu_timed: