Skip to content

Commit

Permalink
Android: tst_QTimeZone::transitionEachZone: skip 2 zones
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Morten242 committed Jun 27, 2018
1 parent a8a0dff commit da82bfd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/auto/corelib/tools/qtimezone/tst_qtimezone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit da82bfd

Please sign in to comment.