From a7a604de9b8642bf1f5e89a2f7a5cc93d2364162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Rodrigues=20Miguel?= Date: Mon, 5 Apr 2021 21:03:15 -0300 Subject: [PATCH] test script: make sure to return 0 upon success --- makeshift_testing.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makeshift_testing.py b/makeshift_testing.py index 08fe5b1..1cc2f42 100755 --- a/makeshift_testing.py +++ b/makeshift_testing.py @@ -93,4 +93,6 @@ if __name__ == "__main__": sanity_check_format("tar.bz") sanity_check_format("tar.bz2") sanity_check_format("tar.lz") - sanity_check_format("tar.lzma") \ No newline at end of file + sanity_check_format("tar.lzma") + print("Test finished!") + os._exit(0) \ No newline at end of file