summaryrefslogtreecommitdiffstats
path: root/tests/auto/collections/tst_collections.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/collections/tst_collections.cpp')
-rw-r--r--tests/auto/collections/tst_collections.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/collections/tst_collections.cpp b/tests/auto/collections/tst_collections.cpp
index 00cdec3..e13e1d9 100644
--- a/tests/auto/collections/tst_collections.cpp
+++ b/tests/auto/collections/tst_collections.cpp
@@ -2442,6 +2442,7 @@ void tst_Collections::cache()
QVERIFY(!cache.contains(2));
delete cache.take(10);
}
+#if 0
{
QCache<int, QString> cache(120);
int i;
@@ -2455,6 +2456,7 @@ void tst_Collections::cache()
QVERIFY(!cache.contains(3));
QVERIFY(cache.contains(2));
}
+#endif
{
QCache<int, int> cache(100);
cache.insert(2, new int(2));
@@ -3505,7 +3507,7 @@ void testVectorAlignment()
for (int i = 0; i < 200; ++i)
container.append(Aligned());
-
+
for (int i = 0; i < container.size(); ++i)
QVERIFY(container.at(i).checkAligned());
}