[autotests] Give Xephyr more time to startup

The test is flaky during the wait for Xephyr. Giving it more time should
hopefully make it more reliable.

The better way would be to switch to the command line argument
-displayfd pipeFd

unfortunately the Xephyr on the CI system does not yet support this
command line argument.
This commit is contained in:
Martin Gräßlin 2014-12-01 10:53:40 +01:00
parent 50cbe810f5
commit 40ce3e4ce3

View file

@ -82,7 +82,7 @@ void TestXRandRScreens::initTestCase()
QVERIFY(m_xserver->waitForStarted());
QCOMPARE(m_xserver->state(), QProcess::Running);
// give it some time before we open the X Display
QTest::qWait(100);
QTest::qWait(500);
// create X connection
int screen = 0;
s_connection = xcb_connect(qPrintable(id), &screen);