Re-enabled passing tests in tst_qopengl
To increase the effective test coverage, this patch re-enables the tst_qopengl test case as such, and instead disables only the test functions that are currently failing in CI. Task-number: QTBUG-22453 Change-Id: Ifa9ccab81efb1577767465c150fc64a9d9e3f8e0 Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
This commit is contained in:
parent
2fd3dbb00c
commit
f7d5d07ace
@ -7,5 +7,3 @@ TARGET = tst_qopengl
|
||||
QT += gui gui-private core-private testlib
|
||||
|
||||
SOURCES += tst_qopengl.cpp
|
||||
|
||||
CONFIG += insignificant_test
|
||||
|
@ -327,6 +327,10 @@ void tst_QOpenGL::fboSimpleRendering()
|
||||
// buffer is actually missing. But that's probably ok anyway.
|
||||
void tst_QOpenGL::fboRendering()
|
||||
{
|
||||
#if defined(Q_OS_LINUX) && defined(Q_CC_GNU) && !defined(__x86_64__)
|
||||
QSKIP("QTBUG-22617");
|
||||
#endif
|
||||
|
||||
QWindow window;
|
||||
window.setGeometry(0, 0, 10, 10);
|
||||
window.create();
|
||||
@ -391,6 +395,10 @@ void tst_QOpenGL::fboHandleNulledAfterContextDestroyed()
|
||||
|
||||
void tst_QOpenGL::openGLPaintDevice()
|
||||
{
|
||||
#if defined(Q_OS_LINUX) && defined(Q_CC_GNU) && !defined(__x86_64__)
|
||||
QSKIP("QTBUG-22617");
|
||||
#endif
|
||||
|
||||
QWindow window;
|
||||
window.setGeometry(0, 0, 128, 128);
|
||||
window.create();
|
||||
|
Loading…
Reference in New Issue
Block a user