aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2021-09-21 14:31:00 +0200
committerChristian Stenger <christian.stenger@qt.io>2021-09-27 10:40:15 +0000
commitb64863806fdde895399be961c79d6633fbd52723 (patch)
treee8394b5a4bb62adb49b674043469dacc5dfadc98
parent077a807f014d32911565134c01650f18e63048cb (diff)
Tests: Fix expectations in offset test
Change-Id: I875966409d769fe19e615763c605c527398b01dd Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--tests/auto/debugger/tst_offsets.cpp25
1 files changed, 19 insertions, 6 deletions
diff --git a/tests/auto/debugger/tst_offsets.cpp b/tests/auto/debugger/tst_offsets.cpp
index 2309b5296a..88b8f08dc9 100644
--- a/tests/auto/debugger/tst_offsets.cpp
+++ b/tests/auto/debugger/tst_offsets.cpp
@@ -157,7 +157,17 @@ void tst_offsets::offsets_data()
const int qtVersion = QT_VERSION;
const quintptr qtTypeVersion = qtHookData[6];
- if (qtVersion > 0x50600 && qtTypeVersion >= 17)
+ if (qtTypeVersion >= 20)
+#ifdef Q_OS_WIN
+# ifdef Q_CC_MSVC
+ OFFSET_TEST(QFilePrivate, fileName) << 0 << 304;
+# else // MinGW
+ OFFSET_TEST(QFilePrivate, fileName) << 0 << 304;
+# endif
+#else
+ OFFSET_TEST(QFilePrivate, fileName) << 0 << 304;
+#endif
+ else if (qtVersion > 0x50600 && qtTypeVersion >= 17)
#ifdef Q_OS_WIN
# ifdef Q_CC_MSVC
OFFSET_TEST(QFilePrivate, fileName) << 164 << 224;
@@ -229,13 +239,16 @@ void tst_offsets::offsets_data()
OFFSET_TEST(QFileSystemEntry, m_filePath) << 0 << 0;
OFFSET_TEST(QFileInfoPrivate, fileEntry) << 4 << 8;
- QTest::newRow("sizeof(QObjectData)") << int(sizeof(QObjectData))
- << 28 << 48; // vptr + 3 ptr + 2 int + ptr
+ // Qt5: vptr + 3 ptr + 2 int + ptr
+ // Qt6: vptr + objectlist + 8 unit:1 + uint:24 + int + ptr + bindingstorage + ptr
+ int size32 = qtVersion >= 0x60000 ? 60 : 28;
+ int size64 = qtVersion >= 0x60000 ? 80 : 48;
+ QTest::newRow("sizeof(QObjectData)") << int(sizeof(QObjectData)) << size32 << size64;
- if (qtVersion >= 0x50000)
- OFFSET_TEST(QObjectPrivate, extraData) << 28 << 48; // sizeof(QObjectData)
+ if (qtVersion >= 0x50000 && qtTypeVersion < 21)
+ OFFSET_TEST(QObjectPrivate, extraData) << size32 << size64; // sizeof(QObjectData)
else
- OFFSET_TEST(QObjectPrivate, extraData) << 32 << 56; // sizeof(QObjectData) + 1 ptr
+ OFFSET_TEST(QObjectPrivate, extraData) << size32 + 4 << size64 + 8; // sizeof(QObjectData) + 1 ptr
#if QT_VERSION < 0x50000
OFFSET_TEST(QObjectPrivate, objectName) << 28 << 48; // sizeof(QObjectData)