From de9f324ff628a6d9e870f06e6e216f65382a978b Mon Sep 17 00:00:00 2001 From: yayogev Date: Thu, 24 Aug 2017 16:15:03 +0300 Subject: display message if all containers are running Change-Id: I88be58e086ff356d408d70ddd124a6183906aeea Signed-off-by: yayogev --- calipso/tests/functest/smoke_test.py | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 calipso/tests/functest/smoke_test.py diff --git a/calipso/tests/functest/smoke_test.py b/calipso/tests/functest/smoke_test.py old mode 100644 new mode 100755 index 373a7c3..09b394f --- a/calipso/tests/functest/smoke_test.py +++ b/calipso/tests/functest/smoke_test.py @@ -86,4 +86,6 @@ if __name__ == '__main__': for image in ["calipso-{}".format(i) for i in IMAGES_TO_SEARCH]: if not image_checker.verify_image_is_up(image): ret = False + if ret: + print("All containers are running") sys.exit(0 if ret else 1) -- cgit 1.2.3-korg