From b326c0dd5b93c02c7763174e8519cec5521032e5 Mon Sep 17 00:00:00 2001 From: Matthew Vogt Date: Fri, 20 Apr 2012 11:19:11 +1000 Subject: Move data file to correct location Change-Id: Iaf5363f6bd0a7983dc937e427131f6537a19b1c3 Reviewed-by: Chris Adams --- tests/auto/quick/qquickpixmapcache/data/dataLeak.qml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/auto/quick/qquickpixmapcache/data/dataLeak.qml (limited to 'tests/auto/quick') 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; + } +} -- cgit v1.2.3