summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrei Golubev <andrei.golubev@qt.io>2021-03-17 09:33:06 +0100
committerQt CI Bot <qt_ci_bot@qt-project.org>2021-03-18 10:10:23 +0000
commitf49c6a5672d5c4370c8fb594fbcd4ac6d3d49eea (patch)
tree03331104a0301f64543b296a5037d1dd95134c8f /tests
parente684d81867549092f6b86da3cc9a042bdc369b62 (diff)
parenta2b362f2db03586906ed74cf76f6bf730d4f1297 (diff)
Merge "Rename QList test to something meaningful"
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qlist/tst_qlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/tools/qlist/tst_qlist.cpp b/tests/auto/corelib/tools/qlist/tst_qlist.cpp
index 80adb0f6a1..96a1a35968 100644
--- a/tests/auto/corelib/tools/qlist/tst_qlist.cpp
+++ b/tests/auto/corelib/tools/qlist/tst_qlist.cpp
@@ -349,7 +349,7 @@ private slots:
void fromReadOnlyData() const;
- void qtbug_90359() const;
+ void reallocateCustomAlignedType_qtbug90359() const;
private:
template<typename T> void copyConstructor() const;
@@ -3247,7 +3247,7 @@ struct alignas(8) CustomAligned
friend bool operator==(const CustomAligned &x, const CustomAligned &y) { return x.v == y.v; }
};
-void tst_QList::qtbug_90359() const
+void tst_QList::reallocateCustomAlignedType_qtbug90359() const
{
// Note: a very special test that could only fail for specific alignments
constexpr bool canFail = (alignof(QArrayData) == 4) && (sizeof(QArrayData) == 12);