summaryrefslogtreecommitdiffstats
path: root/testsuites/rubbos/run_rubbos.py
diff options
context:
space:
mode:
authoryuyang <Gabriel.yuyang@huawei.com>2016-11-03 02:17:19 +0800
committeryuyang <Gabriel.yuyang@huawei.com>2016-11-03 02:19:50 +0800
commitcefb61eb31acce1c04cf31c42a7b17fd9d00a5b5 (patch)
tree9fda3ff4b5d22dc366f4449ceb55109dd11e9477 /testsuites/rubbos/run_rubbos.py
parenta51397eb59fd8159806375e78a2aa65f9edfa16d (diff)
Bugfix for random key generation
JIRA: BOTTLENECK-103 Fixing the bug when key generation within rubbos controller Change-Id: Ib444b3a8fab14217bda75bee307ea18652e8b4e4 Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'testsuites/rubbos/run_rubbos.py')
-rwxr-xr-xtestsuites/rubbos/run_rubbos.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuites/rubbos/run_rubbos.py b/testsuites/rubbos/run_rubbos.py
index 63b9ae07..18103f7a 100755
--- a/testsuites/rubbos/run_rubbos.py
+++ b/testsuites/rubbos/run_rubbos.py
@@ -369,6 +369,11 @@ def rubbos_run():
print "Exec shell: " + cmd
subprocess.call(cmd, shell=True)
+ cmd = "scp " + ssh_args + Bottlenecks_repo_dir + \
+ "/utils/infra_setup/bottlenecks_key/bottlenecks_key ubuntu@" + control_public_ip + ":/home/ubuntu/"
+ print "Exec shell: " + cmd
+ subprocess.call(cmd, shell=True)
+
# call remote run_rubbos_internal.sh
cmd = "ssh " + ssh_args + " ubuntu@" + control_public_ip + \
' "sudo /home/ubuntu/run_rubbos_internal.sh /home/ubuntu/rubbos.conf /home/ubuntu/btnks-results" '