summaryrefslogtreecommitdiffstats
path: root/tests/auto/lancelot
diff options
context:
space:
mode:
authoraavit <qt-info@nokia.com>2010-09-07 15:01:32 +0200
committeraavit <qt-info@nokia.com>2010-09-07 15:01:32 +0200
commit5e3d55cc6fc3216e0079bb9d0c835338c9ac2ef8 (patch)
tree062f2d562d72cc887dc690b4d48fcf9cb56538fb /tests/auto/lancelot
parentf1c5c0c1580e68d28eae0373e5df2b92be437af3 (diff)
Add another format, and blacklist some more
Diffstat (limited to 'tests/auto/lancelot')
-rw-r--r--tests/auto/lancelot/tst_lancelot.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/tests/auto/lancelot/tst_lancelot.cpp b/tests/auto/lancelot/tst_lancelot.cpp
index c968473b5a..0f57c1ecae 100644
--- a/tests/auto/lancelot/tst_lancelot.cpp
+++ b/tests/auto/lancelot/tst_lancelot.cpp
@@ -83,6 +83,8 @@ private slots:
void testRasterARGB32PM();
void testRasterRGB32_data();
void testRasterRGB32();
+ void testRasterRGB16_data();
+ void testRasterRGB16();
void testOpenGL_data();
void testOpenGL();
@@ -151,9 +153,23 @@ void tst_Lancelot::testRasterRGB32()
}
-void tst_Lancelot::testOpenGL_data()
+void tst_Lancelot::testRasterRGB16_data()
{
QStringList localBlacklist = QStringList() << QLatin1String("sizes.qps");
+ if (!setupTestSuite(ImageItem::Raster, QImage::Format_RGB16, localBlacklist))
+ QSKIP("Communication with baseline image server failed.", SkipAll);
+}
+
+
+void tst_Lancelot::testRasterRGB16()
+{
+ runTestSuite();
+}
+
+
+void tst_Lancelot::testOpenGL_data()
+{
+ QStringList localBlacklist = QStringList() << QLatin1String("sizes.qps") << QLatin1String("rasterops.qps");
if (!setupTestSuite(ImageItem::OpenGL, QImage::Format_RGB32, localBlacklist))
QSKIP("Communication with baseline image server failed.", SkipAll);
}