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 1QRUTC-0004Cz-QM for garchives@archives.gentoo.org; Tue, 31 May 2011 19:19:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B75421C022; Tue, 31 May 2011 19:18:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7831C1C022 for ; Tue, 31 May 2011 19:18:57 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 112BE1B4018 for ; Tue, 31 May 2011 19:18:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3A05E80508 for ; Tue, 31 May 2011 19:18:56 +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/library/standard/, PMSTestSuite/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: PMSTestSuite/dbus_handler.py PMSTestSuite/library/standard/dbus_case.py X-VCS-Directories: PMSTestSuite/library/standard/ PMSTestSuite/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e9b2e125ea2e8b916a90def4cce83e3dc2460c52 Date: Tue, 31 May 2011 19:18:56 +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: 47579d810d13c9f3db324a0866db7983 commit: e9b2e125ea2e8b916a90def4cce83e3dc2460c52 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Tue May 31 19:04:39 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Tue May 31 19:04:39 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3De9b2e125 Fix having shared dbus_output. --- PMSTestSuite/dbus_handler.py | 1 + PMSTestSuite/library/standard/dbus_case.py | 1 - 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PMSTestSuite/dbus_handler.py b/PMSTestSuite/dbus_handler.py index 89e2ac5..b4b3e4b 100644 --- a/PMSTestSuite/dbus_handler.py +++ b/PMSTestSuite/dbus_handler.py @@ -16,6 +16,7 @@ class RunningTest(dbus.service.Object): Initialize the object for test , for DBusHandler . """ self.test =3D test + self.test.dbus_output =3D [] dbus.service.Object.__init__( self, parent.bus, diff --git a/PMSTestSuite/library/standard/dbus_case.py b/PMSTestSuite/li= brary/standard/dbus_case.py index 8e9db92..0683a0d 100644 --- a/PMSTestSuite/library/standard/dbus_case.py +++ b/PMSTestSuite/library/standard/dbus_case.py @@ -9,7 +9,6 @@ dbus_handler =3D DBusHandler() =20 class DBusEbuildTestCase(EbuildTestCase): """ D-Bus capable base test case. """ - dbus_output =3D [] =20 def __init__(self, *args, **kwargs): """ Initialize the test case and the D-Bus object for it. """