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 1QaAjX-0008Jz-UI for garchives@archives.gentoo.org; Fri, 24 Jun 2011 18:04:00 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F0511C03F; Fri, 24 Jun 2011 18:03:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ED2F91C179 for ; Fri, 24 Jun 2011 18:03:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59C621B4023 for ; Fri, 24 Jun 2011 18:03:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7749A80048 for ; Fri, 24 Jun 2011 18:03:43 +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: <3e5fa8031fc78ec4122f65ea4a4727a35eb5a38d.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite:master commit in: PMSTestSuite/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: PMSTestSuite/cli.py X-VCS-Directories: PMSTestSuite/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3e5fa8031fc78ec4122f65ea4a4727a35eb5a38d Date: Fri, 24 Jun 2011 18:03:43 +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: X-Archives-Hash: df4e108debb75296473c89fc60ca5bf6 commit: 3e5fa8031fc78ec4122f65ea4a4727a35eb5a38d Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Fri Jun 24 18:02:42 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Fri Jun 24 18:02:42 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3D3e5fa803 Verbosely print 'Checking test results'. Test result checks involve VDB lookups so they can take some time. --- PMSTestSuite/cli.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/PMSTestSuite/cli.py b/PMSTestSuite/cli.py index eaff393..72f8b0b 100644 --- a/PMSTestSuite/cli.py +++ b/PMSTestSuite/cli.py @@ -113,6 +113,7 @@ class PMSTestSuiteCLI(object): self.test_library.limit_tests(limit_tests) =20 def tests_done(self): + print('-> Checking test results...') self.failed =3D [] for t in self.test_library: res =3D t.check_result(self.pm)