diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2018-03-13 09:29:52 +0800 |
---|---|---|
committer | zhihui wu <wu.zhihui1@zte.com.cn> | 2018-03-13 09:29:52 +0800 |
commit | c17b0503a1cf2b67957087ecfb35423746ee456e (patch) | |
tree | 7dbd44ff8825ee5bebfa8f4074b7f545da1f2c2d /tests | |
parent | 0e105924554824f9d08df24678e83e174fef2197 (diff) |
run storage test without "-u".
https://build.opnfv.org/ci/view/qtip/job/qtip-storage-apex-zte-virtual5-master/13/console
Change-Id: Id335a2ea36df7553180660bf1f1680354c73266d
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
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!" |