summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qstring
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/text/qstring')
-rw-r--r--tests/auto/corelib/text/qstring/tst_qstring.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/corelib/text/qstring/tst_qstring.cpp b/tests/auto/corelib/text/qstring/tst_qstring.cpp
index dcc3c1ef82..75d14fb8e1 100644
--- a/tests/auto/corelib/text/qstring/tst_qstring.cpp
+++ b/tests/auto/corelib/text/qstring/tst_qstring.cpp
@@ -4106,13 +4106,14 @@ void tst_QString::setRawData()
QVERIFY(cstr.constData() == ptr);
QVERIFY(cstr == QString(ptr, 1));
- QSKIP("This is currently not working.");
// This actually tests the recycling of the shared data object
QString::DataPointer csd = cstr.data_ptr();
cstr.setRawData(ptr2, 1);
+ QEXPECT_FAIL("", "This is currently not working: QTBUG-94450.", Continue);
QVERIFY(cstr.isDetached());
QVERIFY(cstr.constData() == ptr2);
QVERIFY(cstr == QString(ptr2, 1));
+ QEXPECT_FAIL("", "This is currently not working: QTBUG-94450.", Continue);
QVERIFY(cstr.data_ptr() == csd);
// This tests the discarding of the shared data object
@@ -4123,6 +4124,7 @@ void tst_QString::setRawData()
// Another test of the fallback
csd = cstr.data_ptr();
cstr.setRawData(ptr2, 1);
+ QEXPECT_FAIL("", "This is currently not working: QTBUG-94450.", Continue);
QVERIFY(cstr.isDetached());
QVERIFY(cstr.constData() == ptr2);
QVERIFY(cstr == QString(ptr2, 1));