[autotests] Longer wait in TestWaylandOutputDevice::testId
Looks like the wait of 200 msec failed on build.kde.org and thus triggered a heap-use-after-free.
This commit is contained in:
parent
b70402bec7
commit
81f3a7d2e5
1 changed files with 2 additions and 2 deletions
|
@ -513,11 +513,11 @@ void TestWaylandOutputDevice::testId()
|
|||
QVERIFY(idChanged.isValid());
|
||||
|
||||
m_serverOutputDevice->setUuid("42");
|
||||
QVERIFY(idChanged.wait(200));
|
||||
QVERIFY(idChanged.wait());
|
||||
QCOMPARE(output.uuid(), QByteArray("42"));
|
||||
|
||||
m_serverOutputDevice->setUuid("4711");
|
||||
QVERIFY(idChanged.wait(200));
|
||||
QVERIFY(idChanged.wait());
|
||||
QCOMPARE(output.uuid(), QByteArray("4711"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue