From 5cc66f12ac2105adcacd6d77eef9ae08b68d8b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 21 Aug 2014 13:46:13 +0200 Subject: [PATCH] [autotests/wayland_client] Add --use-pixman and remove --no-config Needed for running the weston on the ci-system. --- autotests/wayland_client/test_wayland_connection_thread.cpp | 2 +- autotests/wayland_client/test_wayland_registry.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autotests/wayland_client/test_wayland_connection_thread.cpp b/autotests/wayland_client/test_wayland_connection_thread.cpp index 3d22f8b1a7..c045e5cfcd 100644 --- a/autotests/wayland_client/test_wayland_connection_thread.cpp +++ b/autotests/wayland_client/test_wayland_connection_thread.cpp @@ -57,7 +57,7 @@ void TestWaylandConnectionThread::init() m_westonProcess = new QProcess(this); m_westonProcess->setProgram(QStringLiteral("weston")); - m_westonProcess->setArguments(QStringList({QStringLiteral("--socket=%1").arg(s_socketName), QStringLiteral("--no-config")})); + m_westonProcess->setArguments(QStringList({QStringLiteral("--socket=%1").arg(s_socketName), QStringLiteral("--use-pixman")})); m_westonProcess->start(); QVERIFY(m_westonProcess->waitForStarted()); diff --git a/autotests/wayland_client/test_wayland_registry.cpp b/autotests/wayland_client/test_wayland_registry.cpp index 9f9a9a726b..cecd575038 100644 --- a/autotests/wayland_client/test_wayland_registry.cpp +++ b/autotests/wayland_client/test_wayland_registry.cpp @@ -62,7 +62,7 @@ void TestWaylandRegistry::init() m_westonProcess = new QProcess(this); m_westonProcess->setProgram(QStringLiteral("weston")); - m_westonProcess->setArguments(QStringList({QStringLiteral("--socket=%1").arg(s_socketName), QStringLiteral("--no-config")})); + m_westonProcess->setArguments(QStringList({QStringLiteral("--socket=%1").arg(s_socketName), QStringLiteral("--use-pixman")})); m_westonProcess->start(); QVERIFY(m_westonProcess->waitForStarted());