Remove QEXPECT_FAIL on Linux for QPainterVideoSurface::shaderPresent

These tests seem to be passing consistently now, so this is an attempt
to reenable them on Linux, as right now passing them on some Linux
machines in CI is causing failures.

Task-number: QTBUG-26320
Change-Id: I4f2b219dc694e24d8beee651919f3b805922bde1
Reviewed-by: Tobias Koenig
Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
This commit is contained in:
Andy Nichols
2013-02-19 11:49:20 +01:00
committed by The Qt Project
parent 4fc974fdef
commit df2c324364

View File

@@ -1039,12 +1039,6 @@ void tst_QPainterVideoSurface::shaderPresent()
QVideoSurfaceFormat formatA(frameSizeA, pixelFormatA); QVideoSurfaceFormat formatA(frameSizeA, pixelFormatA);
#ifdef Q_OS_LINUX
QEXPECT_FAIL("ARBfp: rgb32 -> argb32", "QTBUG-26320 - Failing for linux versions", Abort);
QEXPECT_FAIL("ARBfp: rgb32 -> rgb565", "QTBUG-26320 - Failing for linux versions", Abort);
QEXPECT_FAIL("ARBfp: rgb32 -> yuv420p", "QTBUG-26320 - Failing for linux versions", Abort);
QEXPECT_FAIL("ARBfp: yv12 -> rgb32", "QTBUG-26320 - Failing for linux versions", Abort);
#endif
QVERIFY(surface.start(formatA)); QVERIFY(surface.start(formatA));
QCOMPARE(surface.isActive(), true); QCOMPARE(surface.isActive(), true);
QCOMPARE(surface.isReady(), true); QCOMPARE(surface.isReady(), true);