summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-01 14:40:32 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-02 05:43:49 +0100
commita7b1f30d572db18acc0c78e03dbeb2efd4104486 (patch)
tree6daf13e68c4e974b87fda2379028897d0ffcb104 /tests/auto/corelib
parent1f0f5c1691af10f0ff16e3c24bac289e95da67e8 (diff)
Remove disabled test data from QUrl autotest
The removed test data was for obex URLs, which are not supported by QUrl. Change-Id: I166130ae936342d415165e46b7943d198de8986b Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib')
-rw-r--r--tests/auto/corelib/io/qurl/tst_qurl.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/auto/corelib/io/qurl/tst_qurl.cpp b/tests/auto/corelib/io/qurl/tst_qurl.cpp
index 7fc4702246..caa626d97a 100644
--- a/tests/auto/corelib/io/qurl/tst_qurl.cpp
+++ b/tests/auto/corelib/io/qurl/tst_qurl.cpp
@@ -2944,12 +2944,6 @@ void tst_QUrl::hosts_data()
QTest::newRow("longer-ipv6-literal-v4compat") << QString("http://[fec0:8000:4000:8002:1000:ffff:200.100.50.250]")
<< QString("fec0:8000:4000:8002:1000:ffff:200.100.50.250");
-#if 0
- // this is actually invalid
- QTest::newRow("mac-literal") << QString("obex://[00:30:1b:b7:21:fb]")
- << QString("00:30:1b:b7:21:fb");
-#endif
-
// normal hostnames
QTest::newRow("normal") << QString("http://intern") << QString("intern");
QTest::newRow("normal2") << QString("http://qt.nokia.com") << QString("qt.nokia.com");