Add tests for an assertion seen on Windows
QDateTimeEdit's default constructor instantiates the start of 1752-09-14 as its default earliest time; however Friedeman has seen this triggering an assertion. The QDTE tests should be picking that up anyway, but let's overtly test it in QDate's startOfDay testing, too. Change-Id: Ifae87f2695ac3a7993c173a7c21809c87d5daa71 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
parent
93526430a5
commit
f0333355dd
@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2021 The Qt Company Ltd.
|
||||
** Copyright (C) 2022 The Qt Company Ltd.
|
||||
** Copyright (C) 2016 Intel Corporation.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
@ -641,6 +641,17 @@ void tst_QDate::startOfDay_endOfDay_bounds()
|
||||
QCOMPARE(last.date().startOfDay(Qt::UTC).time(), QTime(0, 0));
|
||||
QVERIFY(!first.date().startOfDay(Qt::UTC).isValid());
|
||||
QVERIFY(!last.date().endOfDay(Qt::UTC).isValid());
|
||||
|
||||
// Test for QTBUG-100873, shouldn't assert:
|
||||
const QDate qdteMin(1752, 9, 14); // Used by QDateTimeEdit
|
||||
QCOMPARE(qdteMin.startOfDay(Qt::UTC).date(), qdteMin);
|
||||
QCOMPARE(qdteMin.startOfDay(Qt::LocalTime).date(), qdteMin);
|
||||
#if QT_CONFIG(timezone)
|
||||
QCOMPARE(qdteMin.startOfDay(QTimeZone::systemTimeZone()).date(), qdteMin);
|
||||
QTimeZone berlin("Europe/Berlin");
|
||||
if (berlin.isValid())
|
||||
QCOMPARE(qdteMin.startOfDay(berlin).date(), qdteMin);
|
||||
#endif
|
||||
}
|
||||
|
||||
void tst_QDate::julianDaysLimits()
|
||||
|
Loading…
Reference in New Issue
Block a user