summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/access/qnetworkcookiejar
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-04 10:32:49 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-04 06:01:38 +0200
commit9d2ff58f3642828e494e7e9b2df7dbb8e2cd408f (patch)
treeb2d385cd55c0dbfb6d7e1644907e71474ad76d3b /tests/auto/network/access/qnetworkcookiejar
parentfe90725ced04351a11f54caff8636e4665fed396 (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: I21664d8d92b27c26c64789fc08d0ec7b8988456a Reviewed-on: http://codereview.qt-project.org/5941 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/network/access/qnetworkcookiejar')
-rw-r--r--tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp b/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
index 1b4256bb00..5051aa5fee 100644
--- a/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
+++ b/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
@@ -54,8 +54,10 @@ private slots:
void setCookiesFromUrl();
void cookiesForUrl_data();
void cookiesForUrl();
+#ifdef QT_BUILD_INTERNAL
void effectiveTLDs_data();
void effectiveTLDs();
+#endif
};
QT_BEGIN_NAMESPACE
@@ -362,6 +364,8 @@ void tst_QNetworkCookieJar::cookiesForUrl()
QCOMPARE(result, expectedResult);
}
+// This test requires private API.
+#ifdef QT_BUILD_INTERNAL
void tst_QNetworkCookieJar::effectiveTLDs_data()
{
QTest::addColumn<QString>("domain");
@@ -433,13 +437,11 @@ void tst_QNetworkCookieJar::effectiveTLDs_data()
void tst_QNetworkCookieJar::effectiveTLDs()
{
-#ifndef QT_BUILD_INTERNAL
- QSKIP("Test requires private API", SkipAll);
-#endif
QFETCH(QString, domain);
QFETCH(bool, isTLD);
QCOMPARE(qIsEffectiveTLD(domain), isTLD);
}
+#endif
QTEST_MAIN(tst_QNetworkCookieJar)
#include "tst_qnetworkcookiejar.moc"