diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2018-03-14 07:37:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-14 07:37:35 +0000 |
commit | f798b2aefb73cf8641fa580514c9dc0b8ae7d077 (patch) | |
tree | d441798af51ed5ac8525fce6149271ff91952d50 /tests | |
parent | 31937f72f6fd0f44d26da673127cded6cc217975 (diff) | |
parent | c17b0503a1cf2b67957087ecfb35423746ee456e (diff) |
Merge "run storage test without "-u"."
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ci/periodic.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/ci/periodic.sh b/tests/ci/periodic.sh index e37f236e..0296012f 100755 --- a/tests/ci/periodic.sh +++ b/tests/ci/periodic.sh @@ -13,7 +13,11 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" source ${script_dir}/utils/start_services.sh -docker exec ${TEST_SUITE}_qtip_${SUT} bash -x /home/opnfv/repos/qtip/qtip/scripts/quickstart.sh -u "${SUT}" +if [[ "${TEST_SUITE}" =~ "compute" ]];then + docker exec ${TEST_SUITE}_qtip_${SUT} bash -x /home/opnfv/repos/qtip/qtip/scripts/quickstart.sh -u "${SUT}" +else + docker exec ${TEST_SUITE}_qtip_${SUT} bash -x /home/opnfv/repos/qtip/qtip/scripts/quickstart.sh +fi echo "${TEST_SUITE} QPI done!" |