From: Zac Medico Date: Wed, 11 Mar 2009 06:44:05 +0000 (-0000) Subject: Fix failure exit status. Thanks to Brian Harring. (trunk r12765) X-Git-Tag: v2.1.6.8~68 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e372473449a8e28bb146686bc74c8519bef7d642;p=portage.git Fix failure exit status. Thanks to Brian Harring. (trunk r12765) svn path=/main/branches/2.1.6/; revision=13009 --- diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests index 6781796f8..55e07c514 100755 --- a/pym/portage/tests/runTests +++ b/pym/portage/tests/runTests @@ -16,5 +16,5 @@ import portage.tests as tests if __name__ == "__main__": result = tests.main() - if result.failures: + if not result.wasSuccessful(): sys.exit(1)