summaryrefslogtreecommitdiff
path: root/tubes/qa
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2012-03-26 14:22:25 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2012-07-17 16:40:00 +0200
commit70ecadfcffc780f5024c1ed99b18b7939ea0609f (patch)
tree1ab627d237239e041bac4024596b3ea81e7603de /tubes/qa
parent114542a8b2d48b85721ba5699c5951810473f507 (diff)
tubes: quick hack to allow running two instances
To record a screencast, I wanted to get two instances of LibreOffice running in the same session. But the Client object(s) claim D-Bus names, so initializing the second instance failed. This patch changes things so that if LIBO_TUBES=master, no Client objects are created. As a result, only the slave can receive files.
Diffstat (limited to 'tubes/qa')
-rw-r--r--tubes/qa/test_manager.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tubes/qa/test_manager.cxx b/tubes/qa/test_manager.cxx
index cb3136285b26..ae9b713da243 100644
--- a/tubes/qa/test_manager.cxx
+++ b/tubes/qa/test_manager.cxx
@@ -211,12 +211,12 @@ void TestTeleTubes::testContactList()
void TestTeleTubes::testSetupManager1()
{
- mpManager1 = new TeleManager( true);
+ mpManager1 = new TeleManager( true, true);
}
void TestTeleTubes::testSetupManager2()
{
- mpManager2 = new TeleManager();
+ mpManager2 = new TeleManager( true );
}
void TestTeleTubes::testPrepareAccountManager1()