summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2018-06-26 12:56:37 +0200
committerMårten Nordheim <marten.nordheim@qt.io>2018-06-27 07:52:10 +0000
commitda82bfd8230cf1e8b2719e6eca27df5a73dc0cdc (patch)
tree2b72dc354c41b53b94b7c674dc4889803c0270cb /tests
parenta8a0dffd1f78d27c04cfd1e20563e9ddda4a135c (diff)
Android: tst_QTimeZone::transitionEachZone: skip 2 zones
When testing zones "America/Mazatlan" and "Mexico/BajaSur" the test crashes from an assert. Skip testing the zones for now. Task-number: QTBUG-69132 Change-Id: I595089647792e9a2c094d63cb837584b8cdc9cb9 Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp b/tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp
index 29efd8fb4a..ed80d4528d 100644
--- a/tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp
+++ b/tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp
@@ -508,6 +508,10 @@ void tst_QTimeZone::transitionEachZone()
continue;
}
#endif
+#ifdef Q_OS_ANDROID
+ if (zone == "America/Mazatlan" || zone == "Mexico/BajaSur")
+ QSKIP("Crashes on Android, see QTBUG-69132");
+#endif
qint64 here = secs + i * 3600;
QDateTime when = QDateTime::fromMSecsSinceEpoch(here * 1000, named);
qint64 stamp = when.toMSecsSinceEpoch();