aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/core/task.py
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-01-20 01:09:36 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-20 01:09:36 +0000
commit8f4cc883d89e997320d68c653a12d59f8fba308b (patch)
tree8411d57e47cb402914e348e1d83d7178fd43dac9 /yardstick/benchmark/core/task.py
parent8f91b0a5c1f47953dd1a14541b71505dbf8f869a (diff)
parent65e1ffbabbbfafd03de817e1c4606e5e0382b98d (diff)
Merge "Bugfix:can not run a test suite if not under yardstick root path"
Diffstat (limited to 'yardstick/benchmark/core/task.py')
-rw-r--r--yardstick/benchmark/core/task.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py
index 6cfec7b13..14b46867c 100644
--- a/yardstick/benchmark/core/task.py
+++ b/yardstick/benchmark/core/task.py
@@ -195,6 +195,8 @@ class TaskParser(object): # pragma: no cover
LOG.info("\nStarting scenario:%s", cfg["name"])
test_cases_dir = cfg.get("test_cases_dir", test_cases_dir_default)
+ test_cases_dir = os.path.join(constants.YARDSTICK_ROOT_PATH,
+ test_cases_dir)
if test_cases_dir[-1] != os.sep:
test_cases_dir += os.sep