From 744a31fe2a89951bb1b9b832bde1eb2f14075f50 Mon Sep 17 00:00:00 2001 From: Debao Zhang Date: Tue, 5 Jun 2012 23:44:56 -0700 Subject: tst_qtextscriptengine: make it compilable under MSVC2010 Source files which contain UTF-8 literals can not be compiled by MSVC with Chinese/Japanese locale. Change-Id: I5daa2e45c5e1ceb86da91e72288c24018c49c0f6 Reviewed-by: Thiago Macieira Reviewed-by: Lars Knoll Reviewed-by: Konstantin Ritt --- tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp b/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp index f0095c63a8..ae3765df10 100644 --- a/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp +++ b/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp @@ -1289,7 +1289,11 @@ void tst_QTextScriptEngine::thaiWithZWJ() #ifdef Q_OS_WIN QSKIP("This test currently fails on Windows - QTBUG-24565"); #endif - QString s(QString::fromUtf8("ร‍ร‌.ร.“ร…ร”ร\xA0ร本ร") + QChar(0x0363)/*superscript 'a', for testing Inherited class*/); + QString s(QString::fromUtf8("\xe0\xb8\xa3\xe2\x80\x8d\xe0\xb8\xa3\xe2\x80" + "\x8c\x2e\xe0\xb8\xa3\x2e\xe2\x80\x9c\xe0\xb8" + "\xa3\xe2\x80\xa6\xe0\xb8\xa3\xe2\x80\x9d\xe0" + "\xb8\xa3\xa0\xe0\xb8\xa3\xe6\x9c\xac\xe0\xb8\xa3") + + QChar(0x0363)/*superscript 'a', for testing Inherited class*/); QTextLayout layout(s); layout.setCacheEnabled(true); layout.beginLayout(); @@ -1334,7 +1338,7 @@ void tst_QTextScriptEngine::thaiWithZWJ() void tst_QTextScriptEngine::thaiMultipleVowels() { - QString s(QString::fromUtf8("ส")); + QString s(QString::fromUtf8("\xe0\xb8\xaa")); for (int i = 0; i < 100; i++) s += QChar(0x0E47); // Add lots of "VOWEL SIGN MAI TAI KHU N/S-T" stacked on top of the character s += QChar(0x200D); // Now add a zero width joiner (which adds a circle which is hidden) -- cgit v1.2.3