diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-09-26 01:53:00 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-09-26 01:54:28 +0000 |
commit | 7ac409f0707511607a1e526030686a6791fa08ac (patch) | |
tree | 0084d66efbed233767b0e6377dfc660e26c9c6c4 | |
parent | 5113a440045c60000d968c407596179262ae323d (diff) |
[Functest] Fix syntax error in alpine job
Change-Id: I1bb751e1df37bb00347f5597c95066041b37ead2
Signed-off-by: Linda Wang <wangwulin@huawei.com>
-rwxr-xr-x | jjb/functest/functest-alpine.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index fe1888f6f..89cf8b479 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -31,20 +31,21 @@ run_test() { # Determine which Functest image should be used for the test case case ${test_name} in connection_check|api_check|snaps_health_check) - FUNCTEST_IMAGE=opnfv/functest-healthcheck + FUNCTEST_IMAGE=opnfv/functest-healthcheck ;; vping_ssh|vping_userdata|tempest_smoke_serial|rally_sanity|refstack_defcore|odl|odl_netvirt|fds|snaps_smoke) - FUNCTEST_IMAGE=opnfv/functest-smoke + FUNCTEST_IMAGE=opnfv/functest-smoke ;; tempest_full_parallel|tempest_custom|rally_full) - FUNCTEST_IMAGE=opnfv/functest-components + FUNCTEST_IMAGE=opnfv/functest-components ;; cloudify_ims|orchestra_openims|orchestra_clearwaterims|vyos_vrouter) - FUNCTEST_IMAGE=opnfv/functest-vnf + FUNCTEST_IMAGE=opnfv/functest-vnf ;; promise|doctor-notification|bgpvpn|functest-odl-sfc|domino-multinode|barometercollectd) - FUNCTEST_IMAGE=opnfv/functest-features + FUNCTEST_IMAGE=opnfv/functest-features ;; parser) - FUNCTEST_IMAGE=opnfv/functest-parser + FUNCTEST_IMAGE=opnfv/functest-parser ;; *) echo "Unkown test case $test_name" exit 1 + ;; esac echo "Functest: Pulling Functest Docker image ${FUNCTEST_IMAGE} ..." docker pull ${FUNCTEST_IMAGE}>/dev/null |