diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-01-28 20:41:09 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-01-28 20:41:09 (GMT) |
commit | 76cb07b10389cf808c138e7754627fd3fd5c0911 (patch) | |
tree | 7120e1c68cf4fe57a268aecf176666e30f32a2fd /tests/auto | |
parent | 27d49af44951b52ca82afb3258ce93584a89d98f (diff) | |
parent | 05d8caa4c42b5539d993a898830307c21cb942b6 (diff) | |
download | Qt-76cb07b10389cf808c138e7754627fd3fd5c0911.zip Qt-76cb07b10389cf808c138e7754627fd3fd5c0911.tar.gz Qt-76cb07b10389cf808c138e7754627fd3fd5c0911.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-earth-staging into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/qt-earth-staging:
Incorrect comparison result in QString::locale
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qstring/tst_qstring.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qstring/tst_qstring.cpp b/tests/auto/qstring/tst_qstring.cpp index 969521f..abc8d9a 100644 --- a/tests/auto/qstring/tst_qstring.cpp +++ b/tests/auto/qstring/tst_qstring.cpp @@ -4319,6 +4319,9 @@ void tst_QString::localeAwareCompare_data() void tst_QString::localeAwareCompare() { +#ifdef Q_OS_SYMBIAN + QSKIP("QTBUG-16921: There is no way to set up the system locale, so this test is not reliable in Symbian."); +#else #ifdef Q_OS_WIN # ifndef Q_OS_WINCE QSKIP("On others than Win CE, we cannot set the system or user locale.", SkipAll); @@ -4416,6 +4419,7 @@ void tst_QString::localeAwareCompare() if (!locale.isEmpty()) setlocale(LC_ALL, ""); #endif +#endif // Q_OS_SYMBIAN } void tst_QString::split_data() |