diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2012-01-31 13:49:14 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-31 06:30:37 +0100 |
commit | 2772027a20551d26364c2816e51fcabb20773e74 (patch) | |
tree | c66eb032c6d331ca4146eed98523f7616bb26081 /tests | |
parent | 1f6d41343e1eb7ae6de5be77060fd104099b007d (diff) | |
download | qtxmlpatterns-2772027a20551d26364c2816e51fcabb20773e74.tar.gz |
Mark expected failures in tst_qxmlquery
Recent changes to QUrl in qtbase (e650dd3 and 27d9fef) have caused a
regression in this test.
Task-number: QTBUG-23953
Change-Id: Ibccad0c4f8d8a3aa9dcb05fef34d2c05a5d578c3
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qxmlquery/tst_qxmlquery.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qxmlquery/tst_qxmlquery.cpp b/tests/auto/qxmlquery/tst_qxmlquery.cpp index 27f3964..9c8461c 100644 --- a/tests/auto/qxmlquery/tst_qxmlquery.cpp +++ b/tests/auto/qxmlquery/tst_qxmlquery.cpp @@ -2020,6 +2020,10 @@ void tst_QXmlQuery::fnDocNetworkAccessSuccess() const QVERIFY(buffer.open(QIODevice::WriteOnly)); QXmlSerializer serializer(query, &buffer); + + // these tests with data: URL fail since QUrl change e650dd3b6d8212d2c54ddb4a50558b508d0bf2b9 + QEXPECT_FAIL("data scheme with ASCII", "QTBUG-23953, fails", Abort); + QEXPECT_FAIL("data scheme with ASCII no MIME type", "QTBUG-23953, fails", Abort); QVERIFY(query.evaluateTo(&serializer)); QCOMPARE(result, expectedOutput); |