From a5dbb3754eeb5697dd560965f2092372c48516f5 Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Wed, 14 Nov 2012 21:02:23 +0100 Subject: test: Mark tst_qdeclarativexmlhttprequest::send_ignoreData() as XFAIL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Janne Anttila --- .../qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- cgit v0.12