diff options
author | sathishkumarmurugesan <sathishkumar@huawei.com> | 2017-01-19 11:59:54 +0530 |
---|---|---|
committer | sathishkumar murugesan <sathishkumar@huawei.com> | 2017-01-23 12:03:01 +0000 |
commit | 64b199fd56e914a8511a8c59f3e08d012f627ec5 (patch) | |
tree | 7c811a82344b689d29fbe4c5c3820648443fbcb9 /functest/opnfv_tests/sdn/onos/teston | |
parent | 9bc652fe41541a05f52c09d01a2e671eae5b2965 (diff) |
Fix for opnfv onos-sfc scripts
Change-Id: I676885b364e81e2266e72defd7fb21bbc96b093d
Signed-off-by: sathishkumarmurugesan <sathishkumar@huawei.com>
Diffstat (limited to 'functest/opnfv_tests/sdn/onos/teston')
-rwxr-xr-x | functest/opnfv_tests/sdn/onos/teston/onos.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functest/opnfv_tests/sdn/onos/teston/onos.py b/functest/opnfv_tests/sdn/onos/teston/onos.py index 213bdb7d..2537e18d 100755 --- a/functest/opnfv_tests/sdn/onos/teston/onos.py +++ b/functest/opnfv_tests/sdn/onos/teston/onos.py @@ -175,7 +175,7 @@ def CreateImage(): def SfcTest(): - cmd = "python " + ONOS_SFC_PATH + "/Sfc.py" + cmd = "python " + ONOS_SFC_PATH + "/sfc.py" logger.debug("Run sfc tests") os.system(cmd) @@ -187,7 +187,7 @@ def GetIp(type): def Replace(before, after): - file = "/Sfc_fun.py" + file = "/sfc_onos.py" cmd = "sed -i 's/" + before + "/" + after + "/g' " + ONOS_SFC_PATH + file os.system(cmd) @@ -199,7 +199,7 @@ def SetSfcConf(): Replace("glance_ip", GetIp("glance")) pwd = ft_constants.OS_PASSWORD Replace("console", pwd) - creds_neutron = openstack_utils.get_credentials("neutron") + creds_neutron = openstack_utils.get_credentials() neutron_client = neutronclient.Client(**creds_neutron) ext_net = openstack_utils.get_external_net(neutron_client) Replace("admin_floating_net", ext_net) |