From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ri6gC-0001to-Al for garchives@archives.gentoo.org; Tue, 03 Jan 2012 15:53:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 775A221C1AE; Tue, 3 Jan 2012 15:52:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 46C5021C18D for ; Tue, 3 Jan 2012 15:52:34 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4D091B4019 for ; Tue, 3 Jan 2012 15:52:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 235DF8005C for ; Tue, 3 Jan 2012 15:52:33 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <4f39764c49369c219abc8412eeb9e0b77c137e2e.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/output/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/output/cli.py X-VCS-Directories: pmstestsuite/output/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4f39764c49369c219abc8412eeb9e0b77c137e2e Date: Tue, 3 Jan 2012 15:52:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 6c88c694-c026-403c-9db4-8aeb3046457b X-Archives-Hash: 6bb17ae05b7cb33f7fc1c22230f40e61 commit: 4f39764c49369c219abc8412eeb9e0b77c137e2e Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Tue Jan 3 12:02:37 2012 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Tue Jan 3 12:02:37 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3D4f39764c Fix CLI output exit status. --- pmstestsuite/output/cli.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pmstestsuite/output/cli.py b/pmstestsuite/output/cli.py index d07fbfa..540abaf 100644 --- a/pmstestsuite/output/cli.py +++ b/pmstestsuite/output/cli.py @@ -29,6 +29,6 @@ class CLIOutput(OutputModule): print('-> %s: %s [%s%s]' % (a.name, str(a), 'OK' if a else 'FAILED', '/UNDEF' if a.undefined else '')) - ret &=3D bool(failed) + ret &=3D not bool(failed) =20 return ret