summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp b/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
index e0f479524f..21089b5a1b 100644
--- a/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
+++ b/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
@@ -103,8 +103,10 @@ private slots:
void stream_QPen_data();
void stream_QPen();
+#ifndef Q_OS_WINCE
void stream_QPixmap_data();
void stream_QPixmap();
+#endif
void stream_QPoint_data();
void stream_QPoint();
@@ -1526,20 +1528,21 @@ void tst_QDataStream::readQPen(QDataStream *s)
// pixmap testing is currently limited to one pixmap only.
//
+#ifndef Q_OS_WINCE
+// Test depends on more memory than available on Qt/CE
void tst_QDataStream::stream_QPixmap_data()
{
-#ifndef Q_OS_WINCE
stream_data(1);
-#endif
}
+#endif
+#ifndef Q_OS_WINCE
+// Test depends on more memory than available on Qt/CE
void tst_QDataStream::stream_QPixmap()
{
-#ifdef Q_OS_WINCE
- QSKIP("Test depends on more memory than available on Qt/CE");
-#endif
STREAM_IMPL(QPixmap);
}
+#endif
void tst_QDataStream::stream_QIcon_data()
{