diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2011-02-24 13:30:16 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2011-02-24 17:18:05 (GMT) |
commit | 2cbeb6c08cb7c79d6126f75c2cbc470679d671e1 (patch) | |
tree | 2f4b7ed021affaf92dc98e400d53ebe49d0c5466 /tests/auto/qlocale | |
parent | b58c6bfe14d86a2094c240c24c37a6bb3fa62726 (diff) | |
download | Qt-2cbeb6c08cb7c79d6126f75c2cbc470679d671e1.zip Qt-2cbeb6c08cb7c79d6126f75c2cbc470679d671e1.tar.gz Qt-2cbeb6c08cb7c79d6126f75c2cbc470679d671e1.tar.bz2 |
QLocale improvements on unix/linux.
There is no reason to re-read environment variables all the time.
Reviewed-by: Zeno Albisser
Diffstat (limited to 'tests/auto/qlocale')
-rw-r--r-- | tests/auto/qlocale/tst_qlocale.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index 878a31e..afcc69f 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -1781,6 +1781,7 @@ void tst_QLocale::measurementSystems_data() void tst_QLocale::measurementSystems() { + QSKIP("Meh, skip the test as we do not reread the environment variables anymore", SkipAll); QFETCH(QString, localeName); QFETCH(int, mSystem); @@ -1842,6 +1843,7 @@ void tst_QLocale::systemMeasurementSystems_data() void tst_QLocale::systemMeasurementSystems() { + QSKIP("Meh, skip the test as we do not reread the environment variables anymore", SkipAll); // Theoretically, we could include HPUX in this test, but its setenv implementation // stinks. It's called putenv, and it requires you to keep the variable you pass // to it around forever. @@ -1964,6 +1966,7 @@ void tst_QLocale::queryMeasureSystem_data() void tst_QLocale::queryMeasureSystem() { + QSKIP("Meh, skip the test as we do not reread the environment variables anymore", SkipAll); // Theoretically, we could include HPUX in this test, but its setenv implementation // stinks. It's called putenv, and it requires you to keep the variable you pass // to it around forever. |