Remove obsolete data from QStringRef test.
authorJason McDonald <jason.mcdonald@nokia.com>
Mon, 21 Nov 2011 05:48:52 +0000 (15:48 +1000)
committerQt by Nokia <qt-info@nokia.com>
Mon, 21 Nov 2011 23:33:27 +0000 (00:33 +0100)
The removed data was copied from the QString test (from which it has
since been removed) and wasn't valid, as comments indicated.

Change-Id: I44f066e41d28333326ad97f652c0a6813a173f15
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
tests/auto/corelib/tools/qstringref/tst_qstringref.cpp

index 305439e..23cd3fb 100644 (file)
@@ -790,15 +790,6 @@ void tst_QStringRef::compare_data()
     lower += QChar(QChar::highSurrogate(0x10428));
     lower += QChar(QChar::lowSurrogate(0x10428));
     QTest::newRow("data8") << upper << lower << -1 << 0;
-
-    // embedded nulls
-    // These don't work as of now. It's OK that these don't work since \0 is not a valid unicode
-    /*QTest::newRow("data9") << QString(QByteArray("\0", 1)) << QString(QByteArray("\0", 1)) << 0 << 0;
-      QTest::newRow("data10") << QString(QByteArray("\0", 1)) << QString("") << 1 << 1;
-      QTest::newRow("data11") << QString("") << QString(QByteArray("\0", 1)) << -1 << -1;
-      QTest::newRow("data12") << QString("ab\0c") << QString(QByteArray("ab\0c", 4)) << 0 << 0;
-      QTest::newRow("data13") << QString(QByteArray("ab\0c", 4)) << QString("abc") << -1 << -1;
-      QTest::newRow("data14") << QString("abc") << QString(QByteArray("ab\0c", 4)) << 1 << 1;*/
 }
 
 static bool isLatin(const QString &s)