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 1QrR0x-0003fT-IO for garchives@archives.gentoo.org; Thu, 11 Aug 2011 08:53:28 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E300F21C3AF; Thu, 11 Aug 2011 08:53:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B6C8921C3B0 for ; Thu, 11 Aug 2011 08:53:11 +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 312501B400E for ; Thu, 11 Aug 2011 08:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 88CD980043 for ; Thu, 11 Aug 2011 08:53:10 +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: Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/output/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/output/html.py X-VCS-Directories: pmstestsuite/output/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d9b77dcd10b5314528b32858f1e6108280f0960c Date: Thu, 11 Aug 2011 08:53:10 +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: c16ae388d1bbfb74182938107ec4442f commit: d9b77dcd10b5314528b32858f1e6108280f0960c Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Thu Aug 11 08:48:45 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Thu Aug 11 08:48:59 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Dd9b77dcd Use short test names in HTML output (instead of direct classes). --- pmstestsuite/output/html.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py index f766ffe..749f95e 100644 --- a/pmstestsuite/output/html.py +++ b/pmstestsuite/output/html.py @@ -79,7 +79,7 @@ class HTMLOutput(OutputModule): def _results_by_class(reorderedresults): ret =3D defaultdict(dict) for t, r in reorderedresults.items(): - ret[t.__class__.__name__][t] =3D r + ret[t.short_name][t] =3D r return ret =20 def _sorted_pms(pms):