summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qdatastream
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-04 11:51:31 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-05 03:04:31 +0200
commit7cfad460c56319ba89c4a3a0bbcb2e54ab1cdbc6 (patch)
tree5df8fca668dace17eea7b6c5ed82db8e87180105 /tests/auto/corelib/io/qdatastream
parentc46f59fadf63b661d8611e5896f09fb85c17a00c (diff)
Avoid using QSKIP in lieu of compile-time checks
QSKIP is intended to be used to skip test functions that are found at run-time to be inapplicable or unsafe. If a test function can be determined to be inapplicable at compile-time, the entire test function should be omitted instead of replacing the body of the test function with a QSKIP, which only serves to slow down test runs and to inflate test run-rates with empty, inapplicable tests. Task-number: QTQAINFRA-278 Change-Id: Ib2025339422749cf216e87ac414a3056250bf8f9 Reviewed-on: http://codereview.qt-project.org/5942 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib/io/qdatastream')
-rw-r--r--tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp b/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
index cd4f6c7204..786051c53c 100644
--- a/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
+++ b/tests/auto/corelib/io/qdatastream/tst_qdatastream.cpp
@@ -106,8 +106,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();
@@ -139,8 +141,10 @@ private slots:
void stream_qint64_data();
void stream_qint64();
+#ifndef Q_OS_WINCE
void stream_QIcon_data();
void stream_QIcon();
+#endif
void stream_QEasingCurve_data();
void stream_QEasingCurve();
@@ -1597,35 +1601,31 @@ void tst_QDataStream::readQPen(QDataStream *s)
// pixmap testing is currently limited to one pixmap only.
//
+// Test depends on more memory than available on Qt/CE.
+#ifndef Q_OS_WINCE
void tst_QDataStream::stream_QPixmap_data()
{
-#ifndef Q_OS_WINCE
stream_data(1);
-#endif
}
void tst_QDataStream::stream_QPixmap()
{
-#ifdef Q_OS_WINCE
- QSKIP("Test depends on more memory than available on Qt/CE", SkipAll);
-#endif
STREAM_IMPL(QPixmap);
}
+#endif
+// Test depends on more memory than available on Qt/CE.
+#ifndef Q_OS_WINCE
void tst_QDataStream::stream_QIcon_data()
{
-#ifndef Q_OS_WINCE
stream_data(1);
-#endif
}
void tst_QDataStream::stream_QIcon()
{
-#ifdef Q_OS_WINCE
- QSKIP("Test depends on more memory than available on Qt/CE", SkipAll);
-#endif
STREAM_IMPL(QIcon);
}
+#endif
void tst_QDataStream::writeQPixmap(QDataStream *s)
{