aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/declarative/qsgimage/qsgimage.pro2
-rw-r--r--tests/auto/declarative/qsgimage/tst_qsgimage.cpp6
2 files changed, 1 insertions, 7 deletions
diff --git a/tests/auto/declarative/qsgimage/qsgimage.pro b/tests/auto/declarative/qsgimage/qsgimage.pro
index b1ca1dbbf6..11abb9fa18 100644
--- a/tests/auto/declarative/qsgimage/qsgimage.pro
+++ b/tests/auto/declarative/qsgimage/qsgimage.pro
@@ -10,6 +10,4 @@ testDataFiles.path = .
DEPLOYMENT += testDataFiles
CONFIG += parallel_test
-#temporary
-CONFIG += insignificant_test
QT += core-private gui-private declarative-private network testlib
diff --git a/tests/auto/declarative/qsgimage/tst_qsgimage.cpp b/tests/auto/declarative/qsgimage/tst_qsgimage.cpp
index fd22f48684..7a850db7a8 100644
--- a/tests/auto/declarative/qsgimage/tst_qsgimage.cpp
+++ b/tests/auto/declarative/qsgimage/tst_qsgimage.cpp
@@ -475,9 +475,7 @@ void tst_qsgimage::tiling_QTBUG_6716()
QImage img = canvas->grabFrameBuffer();
for (int x = 0; x < tiling->width(); ++x) {
for (int y = 0; y < tiling->height(); ++y) {
-#ifdef Q_WS_QPA
- QEXPECT_FAIL("", "QTBUG-21005 fails", Abort);
-#endif
+ QEXPECT_FAIL("horizontal_tiling", "QTBUG-21005 - stable failing test", Abort);
QVERIFY(img.pixel(x, y) == qRgb(0, 255, 0));
}
}
@@ -487,9 +485,7 @@ void tst_qsgimage::tiling_QTBUG_6716()
void tst_qsgimage::tiling_QTBUG_6716_data()
{
QTest::addColumn<QString>("source");
-#ifdef QT_BUILD_INTERNAL // QTBUG-21688 - unstable test on developer build
QTest::newRow("vertical_tiling") << "vtiling.qml";
-#endif
QTest::newRow("horizontal_tiling") << "htiling.qml";
}