diff options
author | Vu Tran <vu.tran@windriver.com> | 2014-05-23 22:10:37 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-05-26 11:30:08 -0400 |
commit | 4d8e797075343d7afa635e6f19ae0d3c41aef768 (patch) | |
tree | 6804cb4f6d3f0056392031a12042531684b76d56 /meta-openstack-compute-test-config | |
parent | 3b41172e2538c0d6d946f87c8cbc4eb035701c01 (diff) | |
download | meta-cloud-services-4d8e797075343d7afa635e6f19ae0d3c41aef768.tar.gz meta-cloud-services-4d8e797075343d7afa635e6f19ae0d3c41aef768.tar.bz2 meta-cloud-services-4d8e797075343d7afa635e6f19ae0d3c41aef768.zip |
add new meta-openstack-compute-test-config layer
There are some setting/configuring systems required
before starting automatic testsuites such as tempest.
Create new layer meta-openstack-compute-test-config as
place holder for any changes on Compute side related to
automatic testsuites.
Signed-off-by: Vu Tran <vu.tran@windriver.com>
Diffstat (limited to 'meta-openstack-compute-test-config')
-rw-r--r-- | meta-openstack-compute-test-config/README | 49 | ||||
-rw-r--r-- | meta-openstack-compute-test-config/conf/layer.conf | 10 |
2 files changed, 59 insertions, 0 deletions
diff --git a/meta-openstack-compute-test-config/README b/meta-openstack-compute-test-config/README new file mode 100644 index 0000000..9e9b11f --- /dev/null +++ b/meta-openstack-compute-test-config/README @@ -0,0 +1,49 @@ +meta-openstack-compute-test-config +================================== + +This layer provides support configuring and deploying the recipes to +setup/configure system to prepare for running openstack tests, +e.g. tempest testsuite. + +Dependencies +------------ + +This layer depends on: + +URI: git://github.com/openembedded/oe-core.git +branch: master +revision: HEAD +prio: default + +URI: git://github.com/openembedded/meta-oe.git +patches: 0001-python-sqlalchemy-update-to-0.7.9.patch +revision: HEAD +layers: meta-oe + meta-networking + meta-ruby + +URI: git://git.yoctoproject.org/meta-virtualization +branch: master +revision: head + +meta-openstack +branch: master +revision: head + +Maintenance +----------- + +Send pull requests, patches, comments or questions to meta-virtualization@yoctoproject.org + +When sending single patches, please using something like: +'git send-email -1 --to meta-virtualization@yoctoproject.org --subject-prefix=meta-virtualization][PATCH' + +Maintainers: Bruce Ashfield <bruce.ashfield@windriver.com> + +License +------- + +All metadata is MIT licensed unless otherwise stated. Source code included +in tree for individual recipes is under the LICENSE stated in each recipe +(.bb file) unless otherwise stated. + diff --git a/meta-openstack-compute-test-config/conf/layer.conf b/meta-openstack-compute-test-config/conf/layer.conf new file mode 100644 index 0000000..9de86a7 --- /dev/null +++ b/meta-openstack-compute-test-config/conf/layer.conf @@ -0,0 +1,10 @@ +# We have a conf and classes directory, append to BBPATH +BBPATH .= ":${LAYERDIR}" + +# We have a recipes directory, add to BBFILES +BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend ${LAYERDIR}/classes/*.bbclass" + +BBFILE_COLLECTIONS += "openstack-compute-test-config-layer" +BBFILE_PATTERN_openstack-compute-test-config-layer := "^${LAYERDIR}/" +# We want this layer to have higher priority than any other meta-openstack layers +BBFILE_PRIORITY_openstack-compute-test-config-layer = "100" |