From be51ab7b216bf84566bcd8738fdde43f6b942d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Thu, 2 Mar 2017 15:57:18 +0100 Subject: [PATCH] fix return codes, refs #20687 --- tests/test_backup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test_backup.py b/tests/test_backup.py index 73b2a4cc..fb26fe3c 100755 --- a/tests/test_backup.py +++ b/tests/test_backup.py @@ -28,6 +28,7 @@ def test_last_backup_is_recent(server, client): print('Backup is older than 2 days') return False else: + print('There is a backup that is less than 2 days old, this is fine') return True else: return False @@ -42,8 +43,10 @@ if os.path.isfile('../utils.py'): print('Failed to ssh into backup server') sys.exit(1) else: - test_last_backup_is_recent(BURP_SERVER, BURP_CLIENT_NAME) - + if not test_last_backup_is_recent(BURP_SERVER, BURP_CLIENT_NAME): + sys.exit(1) + else: + sys.exit(0) else: sys.exit(2) else: -- GitLab