aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios
diff options
context:
space:
mode:
authorrexlee8776 <limingjiang@huawei.com>2016-06-14 10:43:56 +0000
committerrexlee8776 <limingjiang@huawei.com>2016-06-14 10:55:14 +0000
commit3ec9f7fbd9ed74126ae92be3e7d4c16b39674987 (patch)
treeb46f197e9309a6e42c2548c4dd7755aa15060f61 /yardstick/benchmark/scenarios
parente8075bab08e15413dbd2eac5c13daa6e48838324 (diff)
fix bug when running tc043, ssh fail
Change-Id: Ifcbb93f517063d3144f3ea4d7772071d62826e9c Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'yardstick/benchmark/scenarios')
-rw-r--r--yardstick/benchmark/scenarios/networking/ping.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/networking/ping.py b/yardstick/benchmark/scenarios/networking/ping.py
index fc4176650..aa1a500cf 100644
--- a/yardstick/benchmark/scenarios/networking/ping.py
+++ b/yardstick/benchmark/scenarios/networking/ping.py
@@ -41,10 +41,11 @@ class Ping(base.Scenario):
user = host.get('user', 'ubuntu')
ip = host.get('ip', None)
key_filename = host.get('key_filename', '~/.ssh/id_rsa')
+ password = host.get('password', 'root')
LOG.info("user:%s, host:%s", user, ip)
-
- self.connection = ssh.SSH(user, ip, key_filename=key_filename)
+ self.connection = ssh.SSH(user, ip, key_filename=key_filename,
+ password=password)
self.connection.wait()
def run(self, result):