aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/ssh.py
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2016-07-22 22:11:53 +0800
committerwu.zhihui <wu.zhihui1@zte.com.cn>2016-08-12 14:07:03 +0800
commit8953fa3d53019571a222a1aedb7cf796c5d67aec (patch)
tree6d30824e222242660d48ad7dd1451cd290bd2a6c /yardstick/ssh.py
parent6ce3a97548e95a62cf39f37c76bf5b618f5575c4 (diff)
[Yardstick-233]latency measurment by using pktgen-dpdk
VM A runs pktgen-dpdk as a traffic generator and is connected back-to-back with VM B running testpmd for forwarding packets. 1. use linux expect to fetch the latency statics data. 2. fetch 10 samples of latency and calculate avg_latency. 3. use screen to keep test scripts running in the background. 4. add a function send_command() for screen in ssh.py JIRA:YARDSTICK-233 Change-Id: I90ae64b3d198c79f159275ae35715eb284f05080 Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'yardstick/ssh.py')
-rw-r--r--yardstick/ssh.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/yardstick/ssh.py b/yardstick/ssh.py
index 339f834b7..2816a1c7d 100644
--- a/yardstick/ssh.py
+++ b/yardstick/ssh.py
@@ -261,3 +261,8 @@ class SSH(object):
with SCPClient(client.get_transport()) as scp:
scp.put(files, remote_path, recursive)
+
+ # keep shell running in the background, e.g. screen
+ def send_command(self, command):
+ client = self._get_client()
+ client.exec_command(command, get_pty=True)