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>bb10
parent
a8a0dffd1f
commit
da82bfd823
|
|
@ -507,6 +507,10 @@ void tst_QTimeZone::transitionEachZone()
|
|||
&& zone == "Europe/Samara" && i == -3) {
|
||||
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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue