summaryrefslogtreecommitdiffstats
path: root/tests/auto/other
diff options
context:
space:
mode:
authorAndrei Golubev <andrei.golubev@qt.io>2020-04-23 17:11:40 +0300
committerAndrei Golubev <andrei.golubev@qt.io>2020-05-11 14:42:00 +0300
commitb428e98052aa1b97a42f31ed52b1266d17e186ee (patch)
treed6ce2fefdef8279b986239b2f09a5c3fa36da473 /tests/auto/other
parent255cc55d74b55dfbecd9af0ea8d39aaf181da4ce (diff)
Make qtbase compile without QT_CONFIG(timezone)
Fixes: QTBUG-83795 Pick-to: 5.15 Change-Id: I05eaaf57d87a9111d3609ebab81bc707f8af98f0 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests/auto/other')
-rw-r--r--tests/auto/other/toolsupport/tst_toolsupport.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/other/toolsupport/tst_toolsupport.cpp b/tests/auto/other/toolsupport/tst_toolsupport.cpp
index 9591eca16a..c023fa3ac3 100644
--- a/tests/auto/other/toolsupport/tst_toolsupport.cpp
+++ b/tests/auto/other/toolsupport/tst_toolsupport.cpp
@@ -140,8 +140,10 @@ void tst_toolsupport::offsets_data()
<< pmm_to_offsetof(&QDateTimePrivate::m_status) << 4 << 4;
QTest::newRow("QDateTimePrivate::m_offsetFromUtc")
<< pmm_to_offsetof(&QDateTimePrivate::m_offsetFromUtc) << 16 << 16;
+#if QT_CONFIG(timezone)
QTest::newRow("QDateTimePrivate::m_timeZone")
<< pmm_to_offsetof(&QDateTimePrivate::m_timeZone) << 20 << 24;
+#endif
}
#endif // RUN_MEMBER_OFFSET_TEST
}