diff options
author | Sergio Ahumada <sergio.ahumada@digia.com> | 2012-11-14 20:02:23 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-23 20:47:01 (GMT) |
commit | a5dbb3754eeb5697dd560965f2092372c48516f5 (patch) | |
tree | 2cbd99c68665be16af88cee45e9ecbe21bf43a94 /tests | |
parent | 467188858109129886fc77db7c0a53f9fcbbac9e (diff) | |
download | Qt-a5dbb3754eeb5697dd560965f2092372c48516f5.zip Qt-a5dbb3754eeb5697dd560965f2092372c48516f5.tar.gz Qt-a5dbb3754eeb5697dd560965f2092372c48516f5.tar.bz2 |
test: Mark tst_qdeclarativexmlhttprequest::send_ignoreData() as XFAIL
object->setProperty("reqType", "DELETE") always fails.
Actually, this part of the test does not exit in Qt 5.
Task-number: QTBUG-28004
Change-Id: Ia60f8c1c9bb4e780396327e8f8231771cec6889a
Reviewed-by: Simo Fält <simo.falt@digia.com>
Reviewed-by: Janne Anttila <janne.anttila@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp b/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp index b01ef8b..6ebc05e 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp @@ -552,7 +552,9 @@ void tst_qdeclarativexmlhttprequest::send_ignoreData() object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); - QTRY_VERIFY(object->property("dataOK").toBool() == true); + bool objectProperty = object->property("dataOK").toBool(); + QEXPECT_FAIL("", "QTBUG-28004", Continue); + QTRY_VERIFY(objectProperty == true); delete object; } |