From 47595881eba7292de87ec5d7aeb4b123ba6eb0f1 Mon Sep 17 00:00:00 2001 From: lanqinglong Date: Tue, 13 Oct 2015 21:02:11 +0800 Subject: intergrate the basic function senario and testcases in TESTON JIRA:FUNCTEST-47 include tests: Northbound test Ovsdb test Change-Id: Icd5bc2da117cc5c2f7196a0f06fa8934fd8e022f Signed-off-by: lanqinglong --- testcases/Controllers/ONOS/Teston/CI/onosfunctest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'testcases/Controllers/ONOS/Teston/CI/onosfunctest.py') diff --git a/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py b/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py index 3286a15f8..fe6f9d776 100644 --- a/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py +++ b/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py @@ -9,7 +9,6 @@ lanqinglong@huawei.com """ from adapters.client import client - if __name__=="__main__": main = client() @@ -24,8 +23,9 @@ if __name__=="__main__": main.OCN = '189.42.8.104' main.OCN2 = '189.42.8.105' main.localhost = main.OCT - main.onosbasic() #scripts to run - main.RunScript("FUNCvirNetNB") - main.RunScript("FUNCovsdbtest") + runhandle = main.onosstart() + main.RunScript(runhandle, "FUNCvirNetNB") + main.RunScript(runhandle, "FUNCovsdbtest") + main.onosclean( runhandle ) -- cgit 1.2.3-korg