From 514464e1aa202cd6870d769289b709c079e33ce7 Mon Sep 17 00:00:00 2001 From: Vu Tran Date: Wed, 18 Jun 2014 15:45:37 -0400 Subject: cinder builtin tests config location Many cinder built-in testcases failed because they can not find cinder configuration file, as these testcases assume that they are run at python site-packages dir. So forcing these failure testcases to look for these configuration file using absolute path. Signed-off-by: Vu Tran --- meta-openstack/recipes-devtools/python/python-cinder_git.bb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meta-openstack/recipes-devtools/python/python-cinder_git.bb') diff --git a/meta-openstack/recipes-devtools/python/python-cinder_git.bb b/meta-openstack/recipes-devtools/python/python-cinder_git.bb index 58088c9..0866dca 100644 --- a/meta-openstack/recipes-devtools/python/python-cinder_git.bb +++ b/meta-openstack/recipes-devtools/python/python-cinder_git.bb @@ -17,6 +17,7 @@ SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/icehouse \ file://lvm_iscsi_setup.sh \ file://add-cinder-volume-types.sh \ file://fix_cinder_memory_leak.patch \ + file://cinder-builtin-tests-config-location.patch \ " SRCREV="978b036a6467f7f6afb4419f92bf4fa7d1ff2347" @@ -27,6 +28,10 @@ inherit setuptools update-rc.d identity default_configs CINDER_BACKUP_BACKEND_DRIVER ?= "cinder.backup.drivers.swift" +do_install_prepend() { + sed 's:%PYTHON_SITEPACKAGES_DIR%:${PYTHON_SITEPACKAGES_DIR}:g' -i ${S}/${SRCNAME}/tests/conf_fixture.py +} + do_install_append() { TEMPLATE_CONF_DIR=${S}${sysconfdir}/${SRCNAME} CINDER_CONF_DIR=${D}${sysconfdir}/${SRCNAME} -- cgit v1.2.3-54-g00ecf