diff options
author | Jose Lausuch <jalausuch@suse.com> | 2017-10-02 10:26:39 +0200 |
---|---|---|
committer | Jose Lausuch <jalausuch@suse.com> | 2017-10-02 08:29:41 +0000 |
commit | 93344479c4c05bccddeab1a88c224e2cad8a94e8 (patch) | |
tree | 27453db72e52288ced05b3f98d63c3cb3c697a99 /jjb | |
parent | 9e9d853d65357f2519cd5fbadcb58105a4b0c349 (diff) |
[Functest] Continue the job execution if healhcheck fails
This will allow the push-test-logs.sh script to be executed
in any case instead of exiting directly
Change-Id: I03c40e2f368485389a21313f98745217ae634eca
Signed-off-by: Jose Lausuch <jalausuch@suse.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/functest/functest-alpine.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index 797f66001..f5f39b8ff 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -23,7 +23,7 @@ run_tiers() { echo ${ret_value} > ${ret_val_file} if [ ${tier} == 'healthcheck' ]; then echo "Healthcheck tier failed. Exiting Functest..." - exit 1 + break fi fi done |