summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxiaodong shang <shang.xiaodong@zte.com.cn>2017-09-14 11:19:04 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-14 11:19:04 +0000
commit6b7f69347669e8a8e12e09774935c76e30654eb3 (patch)
tree6de8b7b4d63bef1564ceb87bdb59dfda9129141b
parent4acb042de77d187199a233b0bd3886047dac8289 (diff)
parenta9ea7f6e9c495895ad5f1993687b1ee06e8aa00c (diff)
Merge "Fix functest_run script for role of heat_stack_owner"
-rwxr-xr-xtests/functest_run.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/functest_run.sh b/tests/functest_run.sh
index 5f2e0f9..b866ab9 100755
--- a/tests/functest_run.sh
+++ b/tests/functest_run.sh
@@ -110,7 +110,9 @@ create_parser_user_and_project() {
} || {
openstack ${debug} role add ${PARSER_ROLE} --user ${PARSER_USER} \
--project ${PARSER_PROJECT}
- echo " Grant user ${PARSER_USER} the role ${PARSER_ROLE} in project ${PARSER_PROJECT} successful."
+ openstack ${debug} role add heat_stack_owner --user ${PARSER_USER} \
+ --project ${PARSER_PROJECT}
+ echo " Grant user ${PARSER_USER} the role ${PARSER_ROLE} and heat_stack_owner in project ${PARSER_PROJECT} successful."
}
}