summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMÃ¥rten Nordheim <marten.nordheim@qt.io>2020-12-08 15:47:47 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-12-17 22:53:00 +0000
commitb97001aa1cbd21008ebc48fe61b15fbcacb14875 (patch)
tree242bb9d878ba1a483cb42307324159b411ee9a29 /tests
parenta0d963f43607f8719e450b572329daae8de42640 (diff)
QCache: fix updating entries breaking the internal chain
After f08492c6fd9818c7d80b1725355453e179b4d85b was merged this bug would manifest as an entry appearing twice in the chain when a updating an existing entry (insert with an existing key). This could sometimes result in crashes later as the list filled up and the list was used in trim() to remove various entries. Fixes: QTBUG-89176 Change-Id: Ide80160fb4317dc0aefe79eec5dce7ec6813e790 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> (cherry picked from commit 0ca46358321f2244386b0b6558a915cda8c6c006) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qcache/tst_qcache.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qcache/tst_qcache.cpp b/tests/auto/corelib/tools/qcache/tst_qcache.cpp
index f122e45e87..54cf00f9da 100644
--- a/tests/auto/corelib/tools/qcache/tst_qcache.cpp
+++ b/tests/auto/corelib/tools/qcache/tst_qcache.cpp
@@ -48,6 +48,7 @@ private slots:
void take();
void axioms_on_key_type();
void largeCache();
+ void internalChainOrderAfterEntryUpdate();
};
@@ -414,5 +415,21 @@ void tst_QCache::largeCache()
QVERIFY(cache.size() == 0);
}
+// The internal chain could lose track of some objects.
+// Make sure it doesn't happen again.
+void tst_QCache::internalChainOrderAfterEntryUpdate()
+{
+ QCache<QString, int> cache;
+ cache.setMaxCost(20);
+ cache.insert(QString::number(1), new int, 1);
+ cache.insert(QString::number(2), new int, 1);
+ cache.insert(QString::number(1), new int, 1);
+ // If the chain is still 'in order' then setting maxCost == 0 should
+ // a. not crash, and
+ // b. remove all the elements in the QHash
+ cache.setMaxCost(0);
+ QCOMPARE(cache.size(), 0);
+}
+
QTEST_APPLESS_MAIN(tst_QCache)
#include "tst_qcache.moc"