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 --- .../cinder-builtin-tests-config-location.patch | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch (limited to 'meta-openstack/recipes-devtools/python/python-cinder') diff --git a/meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch b/meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch new file mode 100644 index 0000000..53da893 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch @@ -0,0 +1,24 @@ +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 confiugration file +using absolute path. + +Signed-off-by: Vu Tran + +Index: git/cinder/tests/conf_fixture.py +=================================================================== +--- git.orig/cinder/tests/conf_fixture.py ++++ git/cinder/tests/conf_fixture.py +@@ -43,7 +43,7 @@ def set_defaults(conf): + conf.set_default('iscsi_num_targets', 8) + conf.set_default('connection', 'sqlite://', group='database') + conf.set_default('sqlite_synchronous', False) +- conf.set_default('policy_file', 'cinder/tests/policy.json') ++ conf.set_default('policy_file', '%PYTHON_SITEPACKAGES_DIR%/cinder/tests/policy.json') + conf.set_default( + 'xiv_ds8k_proxy', + 'cinder.tests.test_ibm_xiv_ds8k.XIVDS8KFakeProxyDriver') -- cgit v1.2.3-54-g00ecf