diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2017-10-10 19:36:44 +0800 |
---|---|---|
committer | xiaodong shang <shang.xiaodong@zte.com.cn> | 2017-10-10 11:44:27 +0000 |
commit | 9fe6e07e6180c49e6eda3e6cabb339064709180c (patch) | |
tree | 2357fe69f37b47154ec9eb164b314314b42dcb4c /tests | |
parent | 9e8270d05c80712d579b627d46964bcf99458228 (diff) |
Fix integration error when no role of heat_stack_owner
If there is no role of heat_stack_owner in openstack, integration
will be error, the patch will fix it.
JIRA: PARSER-162
Change-Id: I74d4e70153a312c1a64c75e0ff956b7ab2219adf
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functest_run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functest_run.sh b/tests/functest_run.sh index 3afbd56..d8aab32 100755 --- a/tests/functest_run.sh +++ b/tests/functest_run.sh @@ -115,7 +115,7 @@ create_parser_user_and_project() { openstack ${debug} role add heat_stack_owner --user ${PARSER_USER} \ --project ${PARSER_PROJECT} echo " Grant user ${PARSER_USER} the role of heat_stack_owner in project ${PARSER_PROJECT} successful." - } + } || true } } |