summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch')
-rw-r--r--meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch36
1 files changed, 36 insertions, 0 deletions
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..c6bdfa7
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-cinder/cinder-builtin-tests-config-location.patch
@@ -0,0 +1,36 @@
1cinder builtin tests config location
2
3Many cinder built-in testcases failed because they
4can not find cinder configuration file, as these
5testcases assume that they are run at python
6site-packages dir. So forcing these failure
7testcases to look for these confiugration file
8using absolute path.
9
10Signed-off-by: Vu Tran <vu.tran@windriver.com>
11
12diff --git a/cinder/tests/conf_fixture.py b/cinder/tests/conf_fixture.py
13index dbf8d08..ac925eb 100644
14--- a/cinder/tests/conf_fixture.py
15+++ b/cinder/tests/conf_fixture.py
16@@ -43,7 +43,7 @@ def set_defaults(conf):
17 conf.set_default('verbose', True)
18 conf.set_default('connection', 'sqlite://', group='database')
19 conf.set_default('sqlite_synchronous', False)
20- conf.set_default('policy_file', 'cinder/tests/policy.json')
21+ conf.set_default('policy_file', '%PYTHON_SITEPACKAGES_DIR%/cinder/tests/policy.json')
22 conf.set_default(
23 'xiv_ds8k_proxy',
24 'cinder.tests.test_xiv_ds8k.XIVDS8KFakeProxyDriver')
25diff --git a/cinder/tests/fake_flags.py b/cinder/tests/fake_flags.py
26index 3bf94ae..998524c 100644
27--- a/cinder/tests/fake_flags.py
28+++ b/cinder/tests/fake_flags.py
29@@ -43,6 +43,6 @@ def set_defaults(conf):
30 conf.set_default('verbose', True)
31 conf.set_default('connection', 'sqlite://', group='database')
32 conf.set_default('sqlite_synchronous', False)
33- conf.set_default('policy_file', 'cinder/tests/policy.json')
34+ conf.set_default('policy_file', '%PYTHON_SITEPACKAGES_DIR%/cinder/tests/policy.json')
35 conf.set_default('xiv_proxy', 'cinder.tests.test_xiv.XIVFakeProxyDriver')
36 conf.set_default('backup_driver', 'cinder.tests.backup.fake_service')