diff options
author | Shashank Kumar Shankar <shashank.kumar.shankar@intel.com> | 2017-10-23 11:08:31 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-10-31 16:16:23 -0700 |
commit | f84c9a17b05cb9532875afd23275ab8c9e17a91e (patch) | |
tree | 860f3b6e255ea70ed4165794802324013ba01723 /bootstrap/vagrant-onap/tests | |
parent | 2ce8ec9f752e6f6790bef9dd82a7118718146246 (diff) |
Add missing vnfsdk in the Vagrant file
This patch adds missing VNFSDK settings in the Vagrant file
and fixes a minor cloning issue in multicloud.
Issue-Id: INT-290
Change-Id: I9406f252708cf708ea1e92d91d1965b889f3ded0
Signed-off-by: Shashank Kumar Shankar <shashank.kumar.shankar@intel.com>
Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'bootstrap/vagrant-onap/tests')
-rw-r--r-- | bootstrap/vagrant-onap/tests/test_multicloud | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_multicloud b/bootstrap/vagrant-onap/tests/test_multicloud index 374272c1c..b0b674894 100644 --- a/bootstrap/vagrant-onap/tests/test_multicloud +++ b/bootstrap/vagrant-onap/tests/test_multicloud @@ -11,9 +11,12 @@ covered_functions=( function test_clone_multicloud_repos { clone_multicloud_repos - asserts_file_exist $multicloud_src_folder/framework/multivimbroker/pom.xml + #asserts_file_exist $multicloud_src_folder/ + asserts_file_exist $multicloud_src_folder/framework/pom.xml asserts_file_exist $multicloud_src_folder/openstack/pom.xml asserts_file_exist $multicloud_src_folder/openstack/vmware/pom.xml + asserts_file_exist $multicloud_src_folder/openstack/windriver/pom.xml + #asserts_file_exist $multicloud_src_folder/azure/ } # test_compile_multicloud_repos() - @@ -22,6 +25,8 @@ function test_compile_multicloud_repos { compile_multicloud_repos asserts_file_exist $multicloud_src_folder/openstack/newton/target/multicloud-openstack-newton-1.0.0-SNAPSHOT.zip + asserts_file_exist $multicloud_src_folder/openstack/ocata/target/multicloud-openstack-ocata-1.0.0-SNAPSHOT.zip + asserts_file_exist $multicloud_src_folder/openstack/windriver/target/multicloud-openstack-windriver-1.0.0-SNAPSHOT.zip } # test_get_multicloud_images() - |