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 1Qh1rK-0007Hk-1W for garchives@archives.gentoo.org; Wed, 13 Jul 2011 16:00:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77E5321C0D7; Wed, 13 Jul 2011 16:00:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4872821C0D7 for ; Wed, 13 Jul 2011 16:00:13 +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 853DB2AC105 for ; Wed, 13 Jul 2011 16:00:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D4CEB8003D for ; Wed, 13 Jul 2011 16:00:11 +0000 (UTC) From: "Andrea Arteaga" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrea Arteaga" Message-ID: <0bbfc37d7de3f0a2450fb7423168954b0f28fb83.spiros@gentoo> Subject: [gentoo-commits] proj/auto-numerical-bench:master commit in: app-benchmarks/autobench/files/python/ X-VCS-Repository: proj/auto-numerical-bench X-VCS-Files: app-benchmarks/autobench/files/python/main.py X-VCS-Directories: app-benchmarks/autobench/files/python/ X-VCS-Committer: spiros X-VCS-Committer-Name: Andrea Arteaga X-VCS-Revision: 0bbfc37d7de3f0a2450fb7423168954b0f28fb83 Date: Wed, 13 Jul 2011 16:00:11 +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: c7c46726d79b7b1de52ee4e04c5aaad1 Message-ID: <20110713160011.LtR7HlQpquEkF6InI7PcIT9qF0y9LK28UoDKWHVXwgY@z> commit: 0bbfc37d7de3f0a2450fb7423168954b0f28fb83 Author: spiros gmail com> AuthorDate: Wed Jul 13 15:55:13 2011 +0000 Commit: Andrea Arteaga gmail com> CommitDate: Wed Jul 13 15:55:13 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/auto-numerica= l-bench.git;a=3Dcommit;h=3D0bbfc37d Bugfix --- app-benchmarks/autobench/files/python/main.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app-benchmarks/autobench/files/python/main.py b/app-benchmar= ks/autobench/files/python/main.py index 47d72eb..561d5d9 100644 --- a/app-benchmarks/autobench/files/python/main.py +++ b/app-benchmarks/autobench/files/python/main.py @@ -218,7 +218,7 @@ for tn,(name,test) in enumerate(cfg.tests.items(),1): # |-(name1, impl2) -> resultobject12 # |-(name2, impl1) -> resultobject21 =20 results =3D {} -for (name,test) in tests.items(): +for (name,test) in cfg.tests.items(): if test.has_key('implementations'): for impl in test['implementations']: results[(name, impl)] =3D test['results'][impl]