summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2015-04-24 08:50:16 -0700
committerMarc Mutz <marc.mutz@kdab.com>2015-05-20 17:23:33 +0000
commit9269dcc8ed9839c403f4f88edd79d0b8f0945d4a (patch)
tree1798cd089816861f2b0f4ccc39f2ecc801557208 /tests
parent9a1283f8d3a671c3d4d08b9a50c3ad1460b1b1f8 (diff)
Fix compilation of QContiguousCache::operator=
freeData() takes a Data*, not a QContiguousCacheData*. Task-number: QTBUG-45783 Change-Id: I96d7ac38dac24b418138ffff13d7fdf09b1d6b07 Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qcontiguouscache/tst_qcontiguouscache.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qcontiguouscache/tst_qcontiguouscache.cpp b/tests/auto/corelib/tools/qcontiguouscache/tst_qcontiguouscache.cpp
index 01855a730e..76687bd478 100644
--- a/tests/auto/corelib/tools/qcontiguouscache/tst_qcontiguouscache.cpp
+++ b/tests/auto/corelib/tools/qcontiguouscache/tst_qcontiguouscache.cpp
@@ -43,6 +43,8 @@ class tst_QContiguousCache : public QObject
{
Q_OBJECT
private slots:
+ void assignment();
+
void empty();
void swap();
@@ -64,6 +66,16 @@ private slots:
QTEST_MAIN(tst_QContiguousCache)
+void tst_QContiguousCache::assignment()
+{
+ // compile-only test: QTBUG-45783
+ QContiguousCache<int> cc1, cc2;
+ // copy:
+ cc1 = cc2;
+ // move:
+ cc1 = qMove(cc2);
+}
+
void tst_QContiguousCache::empty()
{
QContiguousCache<int> c(10);