diff options
author | Fatih Degirmenci <fdegir@gmail.com> | 2018-04-12 08:54:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-04-12 08:54:07 +0000 |
commit | 66fb0dd9f0d64f276b83f333c540c77ca9e0e643 (patch) | |
tree | 0c30fcec0a29a8d7531e72ba94e84326a2117c54 /jjb/xci | |
parent | 8299421a82f682a351f9fb1be8b988dc07161317 (diff) | |
parent | 4b7412c64b07668505d0bf27fc82ef71505f0154 (diff) |
Merge "xci: Log functest-kubernetes.log to console"
Diffstat (limited to 'jjb/xci')
-rwxr-xr-x | jjb/xci/xci-run-functest.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/jjb/xci/xci-run-functest.sh b/jjb/xci/xci-run-functest.sh index 7fb0be9b9..3ae6a8d8a 100755 --- a/jjb/xci/xci-run-functest.sh +++ b/jjb/xci/xci-run-functest.sh @@ -52,8 +52,22 @@ echo "Running functest" ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh" # Record exit code functest_exit=$? + +case ${DEPLOY_SCENARIO[0]} in + os-*) + FUNCTEST_LOG=/root/results/functest.log + ;; + k8-*) + FUNCTEST_LOG=/root/results/functest-kubernetes.log + ;; + *) + echo "Unable to determine the installer. Exiting!" + exit 1 + ;; +esac + echo "Functest log" echo "---------------------------------------------------------------------------------" -ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cat /root/results/functest.log" +ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cat $FUNCTEST_LOG" echo "---------------------------------------------------------------------------------" exit ${functest_exit} |