diff options
author | Fangyin Hu <fangyinx.hu@intel.com> | 2017-07-14 04:27:20 -0700 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2017-07-17 11:07:00 +0000 |
commit | c76f8f80681c352b67fb714d65da25a5217c4ac8 (patch) | |
tree | ac9f74bef76dfb60bdc83a5504adc15a0479e52d /resources/libraries/python/TLDK | |
parent | de33bd3f6669287361a5d7d8dc1a610764ca6683 (diff) |
Fix the TLDK test tcpdump not found issue.
Add the PYBOT execute exit status code.
Change-Id: If0fc29c580177f1b187ec751c6708fc138838bed
Signed-off-by: Fangyin Hu <fangyinx.hu@intel.com>
Diffstat (limited to 'resources/libraries/python/TLDK')
-rw-r--r-- | resources/libraries/python/TLDK/UdpTest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/TLDK/UdpTest.py b/resources/libraries/python/TLDK/UdpTest.py index adc8aa0ed0..0571323dcf 100644 --- a/resources/libraries/python/TLDK/UdpTest.py +++ b/resources/libraries/python/TLDK/UdpTest.py @@ -114,8 +114,8 @@ class UdpTest(object): """ ssh = SSH() ssh.connect(dut_node) - cmd = 'cd {0}; tcpdump -nnnn -vvv -r ./{2}/{1}_tx.pcap | ' \ - 'grep \'udp sum ok\' | wc -l' \ + cmd = 'cd {0}; sudo /usr/sbin/tcpdump -nnnn -vvv -r ./{2}/{1}_tx.pcap' \ + ' | grep \'udp sum ok\' | wc -l' \ .format(con.REMOTE_FW_DIR, file_prefix, con.TLDK_TESTCONFIG) (ret_code, stdout, _) = ssh.exec_command(cmd, timeout=100) |