aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpixmapcache
diff options
context:
space:
mode:
authorMatthew Vogt <matthew.vogt@nokia.com>2012-04-20 11:19:11 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-20 04:09:37 +0200
commitb326c0dd5b93c02c7763174e8519cec5521032e5 (patch)
treedf4211701aa46f1a7a8c8c48a0f799c18f414dc0 /tests/auto/quick/qquickpixmapcache
parent955bac49404590e88360f855207d88eb21925a6d (diff)
Move data file to correct location
Change-Id: Iaf5363f6bd0a7983dc937e427131f6537a19b1c3 Reviewed-by: Chris Adams <christopher.adams@nokia.com>
Diffstat (limited to 'tests/auto/quick/qquickpixmapcache')
-rw-r--r--tests/auto/quick/qquickpixmapcache/data/dataLeak.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickpixmapcache/data/dataLeak.qml b/tests/auto/quick/qquickpixmapcache/data/dataLeak.qml
new file mode 100644
index 0000000000..724ce5d816
--- /dev/null
+++ b/tests/auto/quick/qquickpixmapcache/data/dataLeak.qml
@@ -0,0 +1,18 @@
+import QtQuick 2.0
+
+Item {
+ id: root
+ width: 800
+ height: 800
+
+ Image {
+ id: i1
+ source: "exists1.png";
+ anchors.top: parent.top;
+ }
+ Image {
+ id: i2
+ source: "exists2.png"
+ anchors.top: i1.bottom;
+ }
+}