Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms-test-suite:master commit in: PMSTestSuite/library/standard/, PMSTestSuite/
Date: Tue, 31 May 2011 19:19:15
Message-Id: e9b2e125ea2e8b916a90def4cce83e3dc2460c52.mgorny@gentoo
1 commit: e9b2e125ea2e8b916a90def4cce83e3dc2460c52
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 19:04:39 2011 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 19:04:39 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms-test-suite.git;a=commit;h=e9b2e125
7
8 Fix having shared dbus_output.
9
10 ---
11 PMSTestSuite/dbus_handler.py | 1 +
12 PMSTestSuite/library/standard/dbus_case.py | 1 -
13 2 files changed, 1 insertions(+), 1 deletions(-)
14
15 diff --git a/PMSTestSuite/dbus_handler.py b/PMSTestSuite/dbus_handler.py
16 index 89e2ac5..b4b3e4b 100644
17 --- a/PMSTestSuite/dbus_handler.py
18 +++ b/PMSTestSuite/dbus_handler.py
19 @@ -16,6 +16,7 @@ class RunningTest(dbus.service.Object):
20 Initialize the object for test <test>, for DBusHandler <parent>.
21 """
22 self.test = test
23 + self.test.dbus_output = []
24 dbus.service.Object.__init__(
25 self,
26 parent.bus,
27
28 diff --git a/PMSTestSuite/library/standard/dbus_case.py b/PMSTestSuite/library/standard/dbus_case.py
29 index 8e9db92..0683a0d 100644
30 --- a/PMSTestSuite/library/standard/dbus_case.py
31 +++ b/PMSTestSuite/library/standard/dbus_case.py
32 @@ -9,7 +9,6 @@ dbus_handler = DBusHandler()
33
34 class DBusEbuildTestCase(EbuildTestCase):
35 """ D-Bus capable base test case. """
36 - dbus_output = []
37
38 def __init__(self, *args, **kwargs):
39 """ Initialize the test case and the D-Bus object for it. """