From b326c0dd5b93c02c7763174e8519cec5521032e5 Mon Sep 17 00:00:00 2001 From: Matthew Vogt Date: Fri, 20 Apr 2012 11:19:11 +1000 Subject: [PATCH] Move data file to correct location Change-Id: Iaf5363f6bd0a7983dc937e427131f6537a19b1c3 Reviewed-by: Chris Adams --- tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml | 18 ------------------ .../auto/quick/qquickpixmapcache/data/dataLeak.qml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml create mode 100644 tests/auto/quick/qquickpixmapcache/data/dataLeak.qml diff --git a/tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml b/tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml deleted file mode 100644 index 724ce5d..0000000 --- a/tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml +++ /dev/null @@ -1,18 +0,0 @@ -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; - } -} diff --git a/tests/auto/quick/qquickpixmapcache/data/dataLeak.qml b/tests/auto/quick/qquickpixmapcache/data/dataLeak.qml new file mode 100644 index 0000000..724ce5d --- /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; + } +} -- 1.7.2.5