Hi, This patch was submitted by Antonio Terceiro in the debian bug #742997 [1]
The file test.py is missing an exit(1) when it found an error. http://bugs.debian.org/742997 Happy hacking, -- "I decry the current tendency to seek patents on algorithms. There are better ways to earn a living than to prevent other people from making use of one's contributions to computer science." -- Donald Knuth Saludos /\/\ /\ >< `/
commit 41705681599ae4beddc828051fa819d765df4bd3 Author: Antonio Terceiro <[email protected]> Date: Tue Sep 23 20:03:20 2014 +0200 Missing return code error in test.py diff --git a/t/test.py b/t/test.py index f9a2ab7..e33b338 100644 --- a/t/test.py +++ b/t/test.py @@ -175,6 +175,7 @@ def main(): for t in sorted(failed): print " ", t print "Done" + exit(1) if __name__ == "__main__": main()
signature.asc
Description: Digital signature
_______________________________________________ stgit-users mailing list [email protected] https://mail.gna.org/listinfo/stgit-users
